Fixed an issue where the Help message not displaying correctly on Login/Group role. Fixes #6414

This commit is contained in:
Pradip Parkale 2021-05-17 13:08:38 +05:30 committed by Akshay Joshi
parent 42b8dbb58f
commit 4676d7ef02
2 changed files with 15 additions and 9 deletions

View File

@ -35,6 +35,7 @@ Bug fixes
| `Issue #6408 <https://redmine.postgresql.org/issues/6408>`_ - Fixed ModuleNotFoundError when running setup.py from outside of the root. | `Issue #6408 <https://redmine.postgresql.org/issues/6408>`_ - Fixed ModuleNotFoundError when running setup.py from outside of the root.
| `Issue #6409 <https://redmine.postgresql.org/issues/6409>`_ - Fixed an issue where the current debug line is not visible in the 'Dark' theme. | `Issue #6409 <https://redmine.postgresql.org/issues/6409>`_ - Fixed an issue where the current debug line is not visible in the 'Dark' theme.
| `Issue #6413 <https://redmine.postgresql.org/issues/6413>`_ - Fixed an issue where duplicate columns are visible in the browser tree, which is owned by two sequences. | `Issue #6413 <https://redmine.postgresql.org/issues/6413>`_ - Fixed an issue where duplicate columns are visible in the browser tree, which is owned by two sequences.
| `Issue #6414 <https://redmine.postgresql.org/issues/6414>`_ - Fixed an issue where the Help message not displaying correctly on Login/Group role.
| `Issue #6416 <https://redmine.postgresql.org/issues/6416>`_ - Added comment column in the properties panel for View and Materialized View collection node. | `Issue #6416 <https://redmine.postgresql.org/issues/6416>`_ - Added comment column in the properties panel for View and Materialized View collection node.
| `Issue #6417 <https://redmine.postgresql.org/issues/6417>`_ - Fixed an issue where query editor is not being closed if the user clicks on the 'Don't Save' button. | `Issue #6417 <https://redmine.postgresql.org/issues/6417>`_ - Fixed an issue where query editor is not being closed if the user clicks on the 'Don't Save' button.
| `Issue #6420 <https://redmine.postgresql.org/issues/6420>`_ - Ensure that pgAdmin4 shut down completely on the Quit command. | `Issue #6420 <https://redmine.postgresql.org/issues/6420>`_ - Ensure that pgAdmin4 shut down completely on the Quit command.

View File

@ -515,7 +515,13 @@ define('pgadmin.node.role', [
filter: function(d) { filter: function(d) {
return this.model.isNew() || (this.model.get('rolname') != d.label); return this.model.isNew() || (this.model.get('rolname') != d.label);
}, },
helpMessage: 'helpMessage', helpMessage: function(m) {
if (m.has('read_only') && m.get('read_only') == false) {
return gettext('Select the checkbox for roles to include WITH ADMIN OPTION.');
} else {
return gettext('Roles shown with a check mark have the WITH ADMIN OPTION set.');
}
},
}, },
{ {
id: 'rolmembers', label: gettext('Members'), type: 'collection', group: gettext('Membership'), id: 'rolmembers', label: gettext('Members'), type: 'collection', group: gettext('Membership'),
@ -535,7 +541,13 @@ define('pgadmin.node.role', [
filter: function(d) { filter: function(d) {
return this.model.isNew() || (this.model.get('rolname') != d.label); return this.model.isNew() || (this.model.get('rolname') != d.label);
}, },
helpMessage: 'helpMessage', helpMessage: function(m) {
if (m.has('read_only') && m.get('read_only') == false) {
return gettext('Select the checkbox for roles to include WITH ADMIN OPTION.');
} else {
return gettext('Roles shown with a check mark have the WITH ADMIN OPTION set.');
}
},
}, },
{ {
id: 'variables', label: '', type: 'collection', id: 'variables', label: '', type: 'collection',
@ -591,13 +603,6 @@ define('pgadmin.node.role', [
return null; return null;
}, },
helpMessage: function(m) {
if (m.has('read_only') && m.get('read_only') == false) {
return gettext('Select the checkbox for roles to include WITH ADMIN OPTION.');
} else {
return gettext('Roles shown with a check mark have the WITH ADMIN OPTION set.');
}
},
}), }),
}); });
} }