mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed linter error.
This commit is contained in:
@@ -83,12 +83,12 @@ define('pgadmin.node.sequence', [
|
|||||||
{
|
{
|
||||||
role: ()=>getNodeListByName('role', treeNodeInfo, itemNodeData),
|
role: ()=>getNodeListByName('role', treeNodeInfo, itemNodeData),
|
||||||
schema: ()=>getNodeListByName('schema', treeNodeInfo, itemNodeData, {}, (m)=>{
|
schema: ()=>getNodeListByName('schema', treeNodeInfo, itemNodeData, {}, (m)=>{
|
||||||
// If schema name start with pg_* then we need to exclude them
|
// If schema name start with pg_* then we need to exclude them
|
||||||
if (m.label.match(/^pg_/)) {
|
if (m.label.match(/^pg_/)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
seqowner: pgBrowser.serverInfo[treeNodeInfo.server._id].user.name,
|
seqowner: pgBrowser.serverInfo[treeNodeInfo.server._id].user.name,
|
||||||
|
|||||||
Reference in New Issue
Block a user