Fixed an issue where the file name in the query tool tab was not changing if another file is opened. #5909
parent
53f460ca7d
commit
6bd0ea7a02
|
@ -46,3 +46,4 @@ Bug fixes
|
||||||
| `Issue #5870 <https://github.com/pgadmin-org/pgadmin4/issues/5870>`_ - Ensure that the database migration does not fail with a NoSuchTableError exception.
|
| `Issue #5870 <https://github.com/pgadmin-org/pgadmin4/issues/5870>`_ - Ensure that the database migration does not fail with a NoSuchTableError exception.
|
||||||
| `Issue #5872 <https://github.com/pgadmin-org/pgadmin4/issues/5872>`_ - Handle MERGE operation in query tool explain introduced in PostgreSQL 15.
|
| `Issue #5872 <https://github.com/pgadmin-org/pgadmin4/issues/5872>`_ - Handle MERGE operation in query tool explain introduced in PostgreSQL 15.
|
||||||
| `Issue #5889 <https://github.com/pgadmin-org/pgadmin4/issues/5889>`_ - Fixed an issue where the database server is not connected using a service file.
|
| `Issue #5889 <https://github.com/pgadmin-org/pgadmin4/issues/5889>`_ - Fixed an issue where the database server is not connected using a service file.
|
||||||
|
| `Issue #5909 <https://github.com/pgadmin-org/pgadmin4/issues/5909>`_ - Fixed an issue where the file name in the query tool tab was not changing if another file is opened.
|
||||||
|
|
|
@ -431,7 +431,6 @@ export default function QueryToolComponent({params, pgWindow, pgAdmin, selectedN
|
||||||
setPanelTitle(panel, fileName, {...qtState, current_file: fileName});
|
setPanelTitle(panel, fileName, {...qtState, current_file: fileName});
|
||||||
}
|
}
|
||||||
eventBus.current.fireEvent(QUERY_TOOL_EVENTS.EDITOR_LAST_FOCUS);
|
eventBus.current.fireEvent(QUERY_TOOL_EVENTS.EDITOR_LAST_FOCUS);
|
||||||
eventBus.current.fireEvent(QUERY_TOOL_EVENTS.QUERY_CHANGED, isDirtyRef.current);
|
|
||||||
};
|
};
|
||||||
const events = [
|
const events = [
|
||||||
[QUERY_TOOL_EVENTS.TRIGGER_LOAD_FILE, ()=>{
|
[QUERY_TOOL_EVENTS.TRIGGER_LOAD_FILE, ()=>{
|
||||||
|
|
|
@ -251,6 +251,9 @@ export function MainToolBar({containerRef, onFilterClick, onManageMacros}) {
|
||||||
eventBus.registerListener(QUERY_TOOL_EVENTS.QUERY_CHANGED, (isDirty)=>{
|
eventBus.registerListener(QUERY_TOOL_EVENTS.QUERY_CHANGED, (isDirty)=>{
|
||||||
setDisableButton('save', !isDirty);
|
setDisableButton('save', !isDirty);
|
||||||
});
|
});
|
||||||
|
eventBus.registerListener(QUERY_TOOL_EVENTS.LOAD_FILE_DONE, ()=>{
|
||||||
|
setDisableButton('save', true);
|
||||||
|
});
|
||||||
eventBus.registerListener(QUERY_TOOL_EVENTS.DATAGRID_CHANGED, (isDirty)=>{
|
eventBus.registerListener(QUERY_TOOL_EVENTS.DATAGRID_CHANGED, (isDirty)=>{
|
||||||
setDisableButton('save-data', !isDirty);
|
setDisableButton('save-data', !isDirty);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue