diff --git a/docs/en_US/release_notes_6_15.rst b/docs/en_US/release_notes_6_15.rst index e65cc97e4..5f82e85cb 100644 --- a/docs/en_US/release_notes_6_15.rst +++ b/docs/en_US/release_notes_6_15.rst @@ -20,7 +20,7 @@ New features Housekeeping ************ - | `Issue #5293 `_ - Ensure that the tooltips are consistent throughout the entire application. + | `Issue #5293 `_ - Ensure that the tooltips are consistent throughout the entire application. Bug fixes ********* @@ -30,5 +30,6 @@ Bug fixes | `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 #5261 `_ - Ensure that the search filter should be cleared when a new row is added to the user management. | `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 + | `Issue #5308 `_ - Ensure that the default value for a column should be used if it is made empty. diff --git a/web/pgadmin/static/js/SchemaView/DataGridView.jsx b/web/pgadmin/static/js/SchemaView/DataGridView.jsx index 2b9777b28..03114eba5 100644 --- a/web/pgadmin/static/js/SchemaView/DataGridView.jsx +++ b/web/pgadmin/static/js/SchemaView/DataGridView.jsx @@ -246,7 +246,11 @@ export function DataGridHeader({label, canAdd, onAddClick, canSearch, onSearchTe } - {canAdd && } className={classes.gridControlsButton} />} + {canAdd && { + setSearchText(''); + onSearchTextChange(''); + onAddClick(); + }} icon={} className={classes.gridControlsButton} />} );