diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2020-05-08 14:14:00 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2020-05-08 14:14:00 -0400 |
| commit | 46560c0d0a0a8f3cc457d39c9a5eadfce92228cf (patch) | |
| tree | a4b5d77e922611e41e657a07da6c316b6a96d6b1 /www/js/NVR.js | |
| parent | e1305ff20e0758008d4d70b023a13cc2a4777873 (diff) | |
#939 allow multi group selection
Diffstat (limited to 'www/js/NVR.js')
| -rw-r--r-- | www/js/NVR.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/js/NVR.js b/www/js/NVR.js index 198675f4..fc3a579e 100644 --- a/www/js/NVR.js +++ b/www/js/NVR.js @@ -224,7 +224,7 @@ angular.module('zmApp.controllers') 'showAnimation': true, 'montageHideFooter': false, 'httpCordovaNoEncode': false, - 'currentZMGroupName': '', + 'currentZMGroupNames': [], 'unsupported': {} @@ -1745,8 +1745,8 @@ angular.module('zmApp.controllers') loginData.httpCordovaNoEncode = false; } - if (typeof loginData.currentZMGroupName == 'undefined') { - loginData.currentZMGroupName = ''; + if (typeof loginData.currentZMGroupNames == 'undefined') { + loginData.currentZMGroupNames = []; } if (typeof loginData.unsupported == 'undefined') { |
