mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Add an object menu option to disconnect all server and database connections. #1984
This commit is contained in:
@@ -24,5 +24,8 @@ export default function pgadminOverride(theme) {
|
||||
'&.icon-terminal': {
|
||||
fontSize: '1.3rem !important',
|
||||
}
|
||||
},
|
||||
'.text-muted': {
|
||||
color: theme.otherVars.textMuted
|
||||
}
|
||||
};}
|
||||
|
||||
@@ -475,7 +475,7 @@ export class Tree {
|
||||
let idx = 0;
|
||||
let node_cnt = 0;
|
||||
let result = {};
|
||||
if (identifier === undefined) return;
|
||||
if (!identifier) return;
|
||||
let item = TreeNode.prototype.isPrototypeOf(identifier) ? identifier : this.findNode(identifier.path);
|
||||
if (!item) return;
|
||||
do {
|
||||
|
||||
Reference in New Issue
Block a user