Fix missed reference.

This commit is contained in:
Dermot Duffy
2022-06-10 09:16:20 -07:00
parent 14bbb26e95
commit 6213e6d417
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -2495,7 +2495,7 @@ cameras:
<details> <details>
<summary>Expand: Using all dependent cameras with birdseye</summary> <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 ```yaml
[...] [...]
+4 -4
View File
@@ -398,8 +398,8 @@ export class FrigateCard extends LitElement {
if ( if (
cameraConfig?.camera_name && cameraConfig?.camera_name &&
(cameraConfig?.camera_name !== CAMERA_BIRDSEYE || (cameraConfig?.camera_name !== CAMERA_BIRDSEYE ||
cameraConfig?.dependent_cameras?.length || cameraConfig.dependencies.cameras.length ||
cameraConfig?.dependent_cameras_all) cameraConfig.dependencies.all_cameras)
) { ) {
buttons.push({ buttons.push({
icon: 'mdi:filmstrip', icon: 'mdi:filmstrip',
@@ -417,8 +417,8 @@ export class FrigateCard extends LitElement {
if ( if (
cameraConfig?.camera_name && cameraConfig?.camera_name &&
(cameraConfig?.camera_name !== CAMERA_BIRDSEYE || (cameraConfig?.camera_name !== CAMERA_BIRDSEYE ||
cameraConfig?.dependent_cameras?.length || cameraConfig?.dependencies.cameras.length ||
cameraConfig?.dependent_cameras_all) cameraConfig?.dependencies.all_cameras)
) { ) {
buttons.push({ buttons.push({
icon: 'mdi:camera', icon: 'mdi:camera',