From a845b451d0882683ed161ca932a14d2c405b1b08 Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Wed, 8 Jun 2022 02:00:43 -0300 Subject: [PATCH] Remove entity id from cast submenu Because this is more a backend information than a frontend one. --- src/card.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/card.ts b/src/card.ts index 276dc35f..dd564136 100644 --- a/src/card.ts +++ b/src/card.ts @@ -537,7 +537,7 @@ export class FrigateCard extends LitElement { entity: playerEntityID, state_color: false, title: title, - subtitle: title === playerEntityID ? undefined : playerEntityID, + subtitle: undefined, disabled: !state || state.state === 'unavailable', ...(playAction && { tap_action: playAction }), ...(stopAction && { hold_action: stopAction }),