mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-26 02:30:21 -06:00
Fixed an issue where the User Management dialog is not opening. Fixes #7173
This commit is contained in:
parent
e90b3dad01
commit
1cdbb9a643
@ -20,3 +20,4 @@ Bug fixes
|
|||||||
*********
|
*********
|
||||||
|
|
||||||
| `Issue #7124 <https://redmine.postgresql.org/issues/7124>`_ - Fixed the schema diff issue where tables have different column positions and a column has a default value.
|
| `Issue #7124 <https://redmine.postgresql.org/issues/7124>`_ - Fixed the schema diff issue where tables have different column positions and a column has a default value.
|
||||||
|
| `Issue #7173 <https://redmine.postgresql.org/issues/7173>`_ - Fixed an issue where the User Management dialog is not opening.
|
||||||
|
@ -202,7 +202,8 @@ define([
|
|||||||
// Callback to draw User Management Dialog.
|
// Callback to draw User Management Dialog.
|
||||||
show_users: function() {
|
show_users: function() {
|
||||||
if (!userInfo['is_admin']) return;
|
if (!userInfo['is_admin']) return;
|
||||||
var Roles = [],
|
var self = this,
|
||||||
|
Roles = [],
|
||||||
Sources = [];
|
Sources = [];
|
||||||
|
|
||||||
var UserModel = pgBrowser.Node.Model.extend({
|
var UserModel = pgBrowser.Node.Model.extend({
|
||||||
|
Loading…
Reference in New Issue
Block a user