diff --git a/photon-client/src/components/settings/NetworkingCard.vue b/photon-client/src/components/settings/NetworkingCard.vue index 82c6a17a1a..1b3b7bb566 100644 --- a/photon-client/src/components/settings/NetworkingCard.vue +++ b/photon-client/src/components/settings/NetworkingCard.vue @@ -59,7 +59,8 @@ const settingsHaveChanged = (): boolean => { a.shouldPublishProto !== b.shouldPublishProto || a.networkManagerIface !== b.networkManagerIface || a.setStaticCommand !== b.setStaticCommand || - a.setDHCPcommand !== b.setDHCPcommand + a.setDHCPcommand !== b.setDHCPcommand || + a.matchCamerasOnlyByPath !== b.matchCamerasOnlyByPath ); }; @@ -77,6 +78,7 @@ const saveGeneralSettings = () => { setStaticCommand: tempSettingsStruct.value.setStaticCommand || "", shouldManage: tempSettingsStruct.value.shouldManage, shouldPublishProto: tempSettingsStruct.value.shouldPublishProto, + matchCamerasOnlyByPath: tempSettingsStruct.value.matchCamerasOnlyByPath, staticIp: tempSettingsStruct.value.staticIp }; @@ -137,6 +139,8 @@ watchEffect(() => {