mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where query editor is not being closed if the user clicks on the 'Don't Save' button. Fixes #6417
This commit is contained in:
committed by
Akshay Joshi
parent
333a22496c
commit
3a2145e5fa
@@ -4965,6 +4965,7 @@ define('tools.querytool', [
|
||||
break;
|
||||
case 1: // Don't Save
|
||||
self.close_on_save = false;
|
||||
self.is_unsaved_data = this.is_unsaved_data;
|
||||
$.ajax({
|
||||
url: url_for('sqleditor._check_server_connection_status', {
|
||||
'sid': self.url_params.sid,
|
||||
@@ -4977,7 +4978,7 @@ define('tools.querytool', [
|
||||
let response = res.data.result.server;
|
||||
if (response) {
|
||||
closeEvent.cancel = true;
|
||||
if (this.is_unsaved_data)
|
||||
if (self.is_unsaved_data)
|
||||
self.ignore_on_close.unsaved_data = true;
|
||||
else
|
||||
self.ignore_on_close.unsaved_query = true;
|
||||
|
||||
Reference in New Issue
Block a user