mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1. Fixed an issue where Alt-Shift-Q didn't work after creating a new query. Fixes #7575
2. Fixed an issue where the Query Editor loses focus when saving a query (Alt+s). Fixes #7521 3. Ensure that an error is thrown if clipboard access is not provided and change the copy rows shortcut. Fixes #7452
This commit is contained in:
committed by
Akshay Joshi
parent
c8ef4733d0
commit
306b184e11
@@ -408,6 +408,7 @@ export default function QueryToolComponent({params, pgWindow, pgAdmin, selectedN
|
||||
isDirtyRef.current = false;
|
||||
setPanelTitle(panel, fileName, {...qtState, current_file: fileName});
|
||||
}
|
||||
eventBus.current.fireEvent(QUERY_TOOL_EVENTS.EDITOR_LAST_FOCUS);
|
||||
};
|
||||
const events = [
|
||||
[QUERY_TOOL_EVENTS.TRIGGER_LOAD_FILE, ()=>{
|
||||
@@ -699,6 +700,7 @@ export default function QueryToolComponent({params, pgWindow, pgAdmin, selectedN
|
||||
onNewQueryToolClick={onNewQueryToolClick}
|
||||
onResetLayout={onResetLayout}
|
||||
docker={docker.current}
|
||||
containerRef={containerRef}
|
||||
/>
|
||||
{React.useMemo(()=>(
|
||||
<MainToolBar
|
||||
|
||||
Reference in New Issue
Block a user