@apia/api 4.0.45 → 4.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -4492,12 +4492,16 @@ class QueryModalController {
|
|
|
4492
4492
|
title: structure?.title,
|
|
4493
4493
|
onConfirm: () => {
|
|
4494
4494
|
this.onConfirm();
|
|
4495
|
+
this.additionalFiltersController.closeModal();
|
|
4495
4496
|
},
|
|
4496
4497
|
onCancel: () => {
|
|
4497
4498
|
this.additionalFiltersController.closeModal();
|
|
4498
4499
|
this.queryController.tableController.state.finishedFirstLoad = false;
|
|
4499
4500
|
this.emitter.emit("cancel", null);
|
|
4500
4501
|
},
|
|
4502
|
+
onClose: () => {
|
|
4503
|
+
this.additionalFiltersController.closeModal();
|
|
4504
|
+
},
|
|
4501
4505
|
confirmProps: {
|
|
4502
4506
|
confirmButtonText: getLabel("btnCon").text,
|
|
4503
4507
|
cancelButtonText: getLabel("btnCan").text
|