Allow users to convert View/Edit table into a Query tool to enable editing the SQL generated. #5908

This commit is contained in:
Nikhil Mohite
2023-12-19 15:52:57 +05:30
committed by GitHub
parent 4db13facf7
commit 04580652ab
18 changed files with 296 additions and 20 deletions
@@ -271,7 +271,7 @@ function ModalContainer({ id, title, content, dialogHeight, dialogWidth, onClose
return;
}
useModalRef.closeModal(id);
if(reason == 'escapeKeyDown') {
if(reason == 'escapeKeyDown' || reason == undefined) {
onClose?.();
}
};