forked from extern/egroupware
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,
|
buttons: et2_dialog.BUTTONS_OK_CANCEL,
|
||||||
value: {
|
value: {
|
||||||
content: content,
|
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,
|
modifications: modifications,
|
||||||
readonlys: readonlys
|
readonlys: readonlys
|
||||||
},
|
},
|
||||||
|
@ -735,7 +735,10 @@ class AdminApp extends EgwApp
|
|||||||
buttons: et2_dialog.BUTTONS_OK_CANCEL,
|
buttons: et2_dialog.BUTTONS_OK_CANCEL,
|
||||||
value: {
|
value: {
|
||||||
content: content,
|
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,
|
modifications: modifications,
|
||||||
readonlys: readonlys
|
readonlys: readonlys
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user