mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-27 16:57:00 -06:00
Ensure that notices should not disappear from the messages tab. Fixes #7512
This commit is contained in:
parent
9468c80a78
commit
9dde195af4
@ -25,6 +25,7 @@ Bug fixes
|
||||
|
||||
| `Issue #7471 <https://redmine.postgresql.org/issues/7471>`_ - Ensure that the splash screen can be moved.
|
||||
| `Issue #7508 <https://redmine.postgresql.org/issues/7508>`_ - Fixed an issue where comments on indexes are not displayed.
|
||||
| `Issue #7512 <https://redmine.postgresql.org/issues/7512>`_ - Ensure that notices should not disappear from the messages tab.
|
||||
| `Issue #7517 <https://redmine.postgresql.org/issues/7517>`_ - Enable the start debugging button once execution is completed.
|
||||
| `Issue #7518 <https://redmine.postgresql.org/issues/7518>`_ - Ensure that dashboard graph API is not called after the panel has been closed.
|
||||
| `Issue #7519 <https://redmine.postgresql.org/issues/7519>`_ - Ensure that geometry should be shown for all the selected cells.
|
||||
|
@ -635,7 +635,7 @@ export class ResultSetUtils {
|
||||
if(!_.isNull(httpMessage.data.data.additional_messages)){
|
||||
tabMsg = httpMessage.data.data.additional_messages + '\n' + tabMsg;
|
||||
}
|
||||
this.eventBus.fireEvent(QUERY_TOOL_EVENTS.SET_MESSAGE, tabMsg);
|
||||
this.eventBus.fireEvent(QUERY_TOOL_EVENTS.SET_MESSAGE, tabMsg, true);
|
||||
this.setClientPK(httpMessage.data.data.client_primary_key);
|
||||
let {result} = httpMessage.data.data;
|
||||
let data = {
|
||||
|
Loading…
Reference in New Issue
Block a user