fix: Fix builtin controls showing up when they should not (#1759)

This commit is contained in:
Dermot Duffy
2024-12-14 16:53:58 -08:00
committed by GitHub
parent cebd4b215b
commit 67f03fb370
+1 -1
View File
@@ -21,7 +21,7 @@ export class FrigateCardLiveHA extends LitElement implements FrigateCardMediaPla
public cameraConfig?: CameraConfig; public cameraConfig?: CameraConfig;
@property({ attribute: true, type: Boolean }) @property({ attribute: true, type: Boolean })
public controls = true; public controls = false;
protected _playerRef: Ref<Element & FrigateCardMediaPlayer> = createRef(); protected _playerRef: Ref<Element & FrigateCardMediaPlayer> = createRef();