Move the notifications tab between messages and history as it seems more natural there.

This commit is contained in:
Akshay Joshi 2018-06-06 09:23:33 +01:00 committed by Dave Page
parent 7dd6372eeb
commit 419f9069ae

View File

@ -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);