Fix missed reference.
This commit is contained in:
@@ -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
@@ -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',
|
||||||
|
|||||||
Reference in New Issue
Block a user