mirror of
https://github.com/wekan/wekan.git
synced 2025-12-24 03:10:12 +01:00
Use Popup.back() instead of Popup.close() to get no conflicts if a Popup is opened as "Sub Popup"
- .back() is also .close() if there is no "popup layer" left
This commit is contained in:
parent
a59dfa8fc0
commit
b9250e4be4
17 changed files with 82 additions and 82 deletions
|
|
@ -283,7 +283,7 @@ const CreateCustomFieldPopup = BlazeComponent.extendComponent({
|
|||
} else {
|
||||
CustomFields.remove(customField._id);
|
||||
}
|
||||
Popup.close();
|
||||
Popup.back();
|
||||
},
|
||||
),
|
||||
},
|
||||
|
|
@ -302,6 +302,6 @@ CreateCustomFieldPopup.register('createCustomFieldPopup');
|
|||
'submit'(evt) {
|
||||
const customFieldId = this._id;
|
||||
CustomFields.remove(customFieldId);
|
||||
Popup.close();
|
||||
Popup.back();
|
||||
}
|
||||
});*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue