mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 10:16:00 +00:00
next screenshots
This commit is contained in:
@@ -221,6 +221,11 @@ export abstract class PerspectiveTreeNode {
|
||||
return false;
|
||||
}
|
||||
|
||||
get pathIdentifier() {
|
||||
if (this.parentNode) return `${this.parentNode.pathIdentifier}_${this.codeName}`;
|
||||
return this.codeName;
|
||||
}
|
||||
|
||||
hasDesignerIdInIncestors(designerId: string): boolean {
|
||||
if (designerId == this.designerId) return true;
|
||||
return this.parentNode?.hasDesignerIdInIncestors(designerId) || false;
|
||||
|
||||
Reference in New Issue
Block a user