From 67f03fb37005eb9ce7383a39b80324d8d450e0c4 Mon Sep 17 00:00:00 2001 From: Dermot Duffy Date: Sat, 14 Dec 2024 16:53:58 -0800 Subject: [PATCH] fix: Fix builtin controls showing up when they should not (#1759) --- src/components/live/providers/ha.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/live/providers/ha.ts b/src/components/live/providers/ha.ts index 9cf819ad..860c460f 100644 --- a/src/components/live/providers/ha.ts +++ b/src/components/live/providers/ha.ts @@ -21,7 +21,7 @@ export class FrigateCardLiveHA extends LitElement implements FrigateCardMediaPla public cameraConfig?: CameraConfig; @property({ attribute: true, type: Boolean }) - public controls = true; + public controls = false; protected _playerRef: Ref = createRef();