Skip to content

Commit cb36f69

Browse files
committed
Update entity-detail-workspace-base.ts
1 parent 20a554c commit cb36f69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/packages/core/workspace/entity-detail/entity-detail-workspace-base.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export abstract class UmbEntityDetailWorkspaceContextBase<
4545
readonly parentUnique = this.#parent.asObservablePart((parent) => (parent ? parent.unique : undefined));
4646
readonly parentEntityType = this.#parent.asObservablePart((parent) => (parent ? parent.entityType : undefined));
4747

48-
#activePathSegment = '';
48+
#routerActiveLocalPath = '';
4949

5050
#initResolver?: () => void;
5151
#initialized = false;
@@ -169,11 +169,11 @@ export abstract class UmbEntityDetailWorkspaceContextBase<
169169
}
170170

171171
protected _setActivePathSegment(segment: string) {
172-
this.#activePathSegment = segment;
172+
this.#routerActiveLocalPath = segment;
173173
}
174174

175175
protected _getActivePathSegment() {
176-
return this.#activePathSegment;
176+
return this.#routerActiveLocalPath;
177177
}
178178

179179
/**

0 commit comments

Comments
 (0)