diff --git a/docs/en_US/release_notes_6_15.rst b/docs/en_US/release_notes_6_15.rst index bfc2aeb10..e65cc97e4 100644 --- a/docs/en_US/release_notes_6_15.rst +++ b/docs/en_US/release_notes_6_15.rst @@ -28,6 +28,7 @@ Bug fixes | `Issue #5145 `_ - Fixed intermittent error shown while OAuth2 login. | `Issue #5188 `_ - Ensure that the continue/start button should be disabled if the user stops the Debugger for the procedures. | `Issue #5210 `_ - Ensure that the query tool creates a new tab with the appropriate user when pressing Alt+Shift+Q. + | `Issue #5212 `_ - Added the close button for all the notifications of the notistack. | `Issue #5249 `_ - Added the ability to display the selected text from the query tool in the find/replace box. | `Issue #5262 `_ - Ensure that the user management dialog should not allow the same email addresses with different letter casings when creating users. | `Issue #5308 `_ - Ensure that the default value for a column should be used if it is made empty. \ No newline at end of file diff --git a/web/pgadmin/static/js/helpers/Notifier.jsx b/web/pgadmin/static/js/helpers/Notifier.jsx index 1b1305c2f..bc47bb638 100644 --- a/web/pgadmin/static/js/helpers/Notifier.jsx +++ b/web/pgadmin/static/js/helpers/Notifier.jsx @@ -145,7 +145,7 @@ let Notifier = { }, _callNotify(msg, type, autoHideDuration) { this.notify( - , + , autoHideDuration ); },