mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
Fix no application value gets set on acl edit dialog
This commit is contained in:
parent
06e770f469
commit
ed1be70235
@ -640,7 +640,10 @@ var AdminApp = /** @class */ (function (_super) {
|
||||
buttons: et2_dialog.BUTTONS_OK_CANCEL,
|
||||
value: {
|
||||
content: content,
|
||||
sel_options: sel_options,
|
||||
// @todo: we need to investigate more on et2_widget_selectbox type of apps
|
||||
// where the sel options are not ready while setting its content. Therefore,
|
||||
// the explicit apps should be removed after fixing it on the widget side.
|
||||
sel_options: jQuery.extend(sel_options, { apps: sel_options.filter2 }),
|
||||
modifications: modifications,
|
||||
readonlys: readonlys
|
||||
},
|
||||
|
@ -735,7 +735,10 @@ class AdminApp extends EgwApp
|
||||
buttons: et2_dialog.BUTTONS_OK_CANCEL,
|
||||
value: {
|
||||
content: content,
|
||||
sel_options: sel_options,
|
||||
// @todo: we need to investigate more on et2_widget_selectbox type of apps
|
||||
// where the sel options are not ready while setting its content. Therefore,
|
||||
// the explicit apps should be removed after fixing it on the widget side.
|
||||
sel_options: jQuery.extend(sel_options, {apps: sel_options.filter2}),
|
||||
modifications: modifications,
|
||||
readonlys: readonlys
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user