From fb43cf2620eedeab1034d9d78799b8ac0b3bc290 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Sat, 12 Mar 2022 07:37:13 -0700 Subject: [PATCH] Update naming to UI --- docs/docs/configuration/index.md | 2 +- web/config/handlers.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/configuration/index.md b/docs/docs/configuration/index.md index 7bdba9841..23add70d6 100644 --- a/docs/docs/configuration/index.md +++ b/docs/docs/configuration/index.md @@ -433,7 +433,7 @@ cameras: required_zones: [] # Optional: Configuration for how camera is handled in the GUI. - gui: + ui: # Optional: Adjust sort order of cameras in the GUI. Larger numbers come later (default: shown below) # By default the cameras are sorted alphabetically. order: 0 diff --git a/web/config/handlers.js b/web/config/handlers.js index cfaaf0e5c..7c2fd883e 100644 --- a/web/config/handlers.js +++ b/web/config/handlers.js @@ -20,7 +20,7 @@ export const handlers = [ detect: { width: 1280, height: 720 }, snapshots: {}, live: { height: 720 }, - gui: { show: true, order: 0 }, + ui: { show: true, order: 0 }, }, side: { name: 'side', @@ -29,7 +29,7 @@ export const handlers = [ detect: { width: 1280, height: 720 }, snapshots: {}, live: { height: 720 }, - gui: { show: true, order: 1 }, + ui: { show: true, order: 1 }, }, }, })