Ensure that rename panel should work on view/edit panels. Fixes #7540
parent
ff4c5392d6
commit
d45072fae5
|
@ -30,6 +30,7 @@ Bug fixes
|
|||
|
||||
| `Issue #7497 <https://redmine.postgresql.org/issues/7497>`_ - Fixed an issue with the error message being displayed at the right place for Azure deployments.
|
||||
| `Issue #7527 <https://redmine.postgresql.org/issues/7527>`_ - Fixed API test cases for Postgres 14.4.
|
||||
| `Issue #7540 <https://redmine.postgresql.org/issues/7540>`_ - Ensure that rename panel should work on view/edit panels.
|
||||
| `Issue #7563 <https://redmine.postgresql.org/issues/7563>`_ - Fixed an issue where autocomplete is not working after clearing the query editor.
|
||||
| `Issue #7573 <https://redmine.postgresql.org/issues/7573>`_ - Ensure that autocomplete does not appear when navigating code using arrow keys.
|
||||
| `Issue #7586 <https://redmine.postgresql.org/issues/7586>`_ - Fixed an issue with rendering geometry when selecting a complete column.
|
||||
|
|
|
@ -261,7 +261,7 @@ export default class SQLEditor {
|
|||
if(is_query_tool) {
|
||||
panel_titles = panelTitleFunc.getPanelTitle(pgBrowser, selected_item, value);
|
||||
} else {
|
||||
panel_titles = showViewData.generateDatagridTitle(pgBrowser, selected_item, value);
|
||||
panel_titles = showViewData.generateViewDataTitle(pgBrowser, selected_item, value);
|
||||
}
|
||||
// Set title to the selected tab.
|
||||
if (is_dirty_editor) {
|
||||
|
|
Loading…
Reference in New Issue