mirror of
https://github.com/nextcloud/server.git
synced 2026-02-12 23:37:26 -05:00
Fix the initial list of groups
This commit is contained in:
parent
1720fdf5f4
commit
4e50f2b72d
1 changed files with 1 additions and 1 deletions
|
|
@ -132,7 +132,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
|
|||
page.find("label[for='groups_enable-"+app.id+"']").hide();
|
||||
page.find(".groups-enable").attr('checked', null);
|
||||
} else {
|
||||
page.find('#group_select').val((app.groups || []).join(','));
|
||||
page.find('#group_select').val((app.groups || []).join('|'));
|
||||
if (app.active) {
|
||||
if (app.groups.length) {
|
||||
OC.Settings.Apps.setupGroupsSelect(page.find('#group_select'));
|
||||
|
|
|
|||
Loading…
Reference in a new issue