Fix missed reference.
This commit is contained in:
@@ -2495,7 +2495,7 @@ cameras:
|
||||
<details>
|
||||
<summary>Expand: Using all dependent cameras with birdseye</summary>
|
||||
|
||||
This example shows events for all other cameras when `birdseye` is selected. This is just a shortcut to naming all other cameras.
|
||||
This example shows events for all other cameras when `birdseye` is selected. This is just a shortcut for naming all other cameras.
|
||||
|
||||
```yaml
|
||||
[...]
|
||||
|
||||
+4
-4
@@ -398,8 +398,8 @@ export class FrigateCard extends LitElement {
|
||||
if (
|
||||
cameraConfig?.camera_name &&
|
||||
(cameraConfig?.camera_name !== CAMERA_BIRDSEYE ||
|
||||
cameraConfig?.dependent_cameras?.length ||
|
||||
cameraConfig?.dependent_cameras_all)
|
||||
cameraConfig.dependencies.cameras.length ||
|
||||
cameraConfig.dependencies.all_cameras)
|
||||
) {
|
||||
buttons.push({
|
||||
icon: 'mdi:filmstrip',
|
||||
@@ -417,8 +417,8 @@ export class FrigateCard extends LitElement {
|
||||
if (
|
||||
cameraConfig?.camera_name &&
|
||||
(cameraConfig?.camera_name !== CAMERA_BIRDSEYE ||
|
||||
cameraConfig?.dependent_cameras?.length ||
|
||||
cameraConfig?.dependent_cameras_all)
|
||||
cameraConfig?.dependencies.cameras.length ||
|
||||
cameraConfig?.dependencies.all_cameras)
|
||||
) {
|
||||
buttons.push({
|
||||
icon: 'mdi:camera',
|
||||
|
||||
Reference in New Issue
Block a user