File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/packages/core/workspace/entity-detail Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export abstract class UmbEntityDetailWorkspaceContextBase<
45
45
readonly parentUnique = this . #parent. asObservablePart ( ( parent ) => ( parent ? parent . unique : undefined ) ) ;
46
46
readonly parentEntityType = this . #parent. asObservablePart ( ( parent ) => ( parent ? parent . entityType : undefined ) ) ;
47
47
48
- #activePathSegment = '' ;
48
+ #routerActiveLocalPath = '' ;
49
49
50
50
#initResolver?: ( ) => void ;
51
51
#initialized = false ;
@@ -169,11 +169,11 @@ export abstract class UmbEntityDetailWorkspaceContextBase<
169
169
}
170
170
171
171
protected _setActivePathSegment ( segment : string ) {
172
- this . #activePathSegment = segment ;
172
+ this . #routerActiveLocalPath = segment ;
173
173
}
174
174
175
175
protected _getActivePathSegment ( ) {
176
- return this . #activePathSegment ;
176
+ return this . #routerActiveLocalPath ;
177
177
}
178
178
179
179
/**
You can’t perform that action at this time.
0 commit comments