mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
fix TypeError in _instanceof Et2Widget: _senders?.egw() returns also undefined, if _senders has no egw property
This commit is contained in:
parent
6f39a1144f
commit
92041df5bd
@ -1248,7 +1248,7 @@ export class Et2Dialog extends Et2Widget(SlotMixin(SlDialog))
|
||||
let button = _senders;
|
||||
let dialogMsg = (typeof _dialogMsg != "undefined") ? _dialogMsg : '';
|
||||
let titleMsg = (typeof _titleMsg != "undefined") ? _titleMsg : '';
|
||||
let egw = _senders instanceof Et2Widget ? _senders.egw() : undefined;
|
||||
let egw = _senders?.egw();
|
||||
let callbackDialog = function(button_id)
|
||||
{
|
||||
if(button_id == Et2Dialog.YES_BUTTON)
|
||||
|
Loading…
Reference in New Issue
Block a user