From 604b79696e001a0b36c8daef45e99a37f9fab93f Mon Sep 17 00:00:00 2001 From: Robin Wittebol Date: Thu, 3 Mar 2022 19:46:14 +0100 Subject: [PATCH] Always show tab labels (#11919) --- src/components/ha-tab.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/ha-tab.ts b/src/components/ha-tab.ts index da172e1fab..106ebd6211 100644 --- a/src/components/ha-tab.ts +++ b/src/components/ha-tab.ts @@ -42,9 +42,7 @@ export class HaTab extends LitElement { @keydown=${this._handleKeyDown} > ${this.narrow ? html`` : ""} - ${!this.narrow || this.active - ? html`${this.name}` - : ""} + ${this.name} ${this._shouldRenderRipple ? html`` : ""} `;