From 35c4deb88481fafe37eefab120438d68082568be Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 16 Nov 2020 09:28:18 +0000 Subject: work around an edge case in acl selector (cherry picked from commit e7c83a81c79235327cbbcb5382146332ba14a684) --- view/js/acl.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/js/acl.js b/view/js/acl.js index 4597184ea..940fdaa44 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -340,7 +340,13 @@ ACL.prototype.update_view = function(value) { that.list.hide(); //hide acl-list that.info.hide(); //show acl-info that.selected_id = that.contact_ids[that.allow_cid[0]]; - that.update_select('\\^' + that.selected_id); + + if(that.acl_select.find('option[id="\\^' + that.selected_id + '"]').length === 0) { + that.update_view('custom'); + } + else { + that.update_select('\\^' + that.selected_id); + } /* jot acl */ $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); -- cgit v1.2.3