From 419f9069aee546fe818161cdd6f4bdab895dcaec Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Wed, 6 Jun 2018 09:23:33 +0100 Subject: [PATCH] Move the notifications tab between messages and history as it seems more natural there. --- web/pgadmin/tools/sqleditor/static/js/sqleditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pgadmin/tools/sqleditor/static/js/sqleditor.js b/web/pgadmin/tools/sqleditor/static/js/sqleditor.js index cab3d7d5a..ce397692d 100644 --- a/web/pgadmin/tools/sqleditor/static/js/sqleditor.js +++ b/web/pgadmin/tools/sqleditor/static/js/sqleditor.js @@ -264,8 +264,8 @@ define('tools.querytool', [ self.data_output_panel = main_docker.addPanel('data_output', wcDocker.DOCK.BOTTOM, sql_panel_obj); self.explain_panel = main_docker.addPanel('explain', wcDocker.DOCK.STACKED, self.data_output_panel); self.messages_panel = main_docker.addPanel('messages', wcDocker.DOCK.STACKED, self.data_output_panel); - self.history_panel = main_docker.addPanel('history', wcDocker.DOCK.STACKED, self.data_output_panel); self.notifications_panel = main_docker.addPanel('notifications', wcDocker.DOCK.STACKED, self.data_output_panel); + self.history_panel = main_docker.addPanel('history', wcDocker.DOCK.STACKED, self.data_output_panel); self.render_history_grid(); queryToolNotifications.renderNotificationsGrid(self.notifications_panel);