mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Continue fixing multiple UI issues found when testing wcDocker changes. #6479
This commit is contained in:
@@ -704,7 +704,7 @@ export default function QueryToolComponent({params, pgWindow, pgAdmin, selectedN
|
||||
};
|
||||
|
||||
const onManageMacros = useCallback(()=>{
|
||||
const onClose = ()=>LayoutDocker.close(docker.current, 'manage-macros');
|
||||
const onClose = ()=>docker.current.close('manage-macros');
|
||||
docker.current.openDialog({
|
||||
id: 'manage-macros',
|
||||
title: gettext('Manage Macros'),
|
||||
@@ -723,7 +723,7 @@ export default function QueryToolComponent({params, pgWindow, pgAdmin, selectedN
|
||||
}, [qtState.preferences.browser]);
|
||||
|
||||
const onFilterClick = useCallback(()=>{
|
||||
const onClose = ()=>LayoutDocker.close(docker.current, 'filter-dialog');
|
||||
const onClose = ()=>docker.current.close('filter-dialog');
|
||||
docker.current.openDialog({
|
||||
id: 'filter-dialog',
|
||||
title: gettext('Sort/Filter options'),
|
||||
|
||||
Reference in New Issue
Block a user