File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/router-component-store/src/lib/router-history-store Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ export class RouterHistoryStore extends ComponentStore<RouterHistoryState> {
133
133
return undefined ;
134
134
}
135
135
136
- const [ sourceNavigationStart ] = this . #findNavigatedSource (
136
+ const [ sourceNavigationStart ] = this . #findSourceNavigatedSequence (
137
137
maxNavigatedId ,
138
138
history
139
139
) ;
@@ -143,7 +143,7 @@ export class RouterHistoryStore extends ComponentStore<RouterHistoryState> {
143
143
}
144
144
145
145
const previousNavigationId = sourceNavigationStart . id - 1 ;
146
- const [ , previousNavigationEnd ] = this . #findNavigatedSource (
146
+ const [ , previousNavigationEnd ] = this . #findSourceNavigatedSequence (
147
147
previousNavigationId ,
148
148
history
149
149
) ;
@@ -189,7 +189,7 @@ export class RouterHistoryStore extends ComponentStore<RouterHistoryState> {
189
189
* @param history The history to search.
190
190
* @returns The source router navigated sequence.
191
191
*/
192
- #findNavigatedSource (
192
+ #findSourceNavigatedSequence (
193
193
navigationId : number ,
194
194
history : RouterHistory
195
195
) : RouterNavigatedSequence {
You can’t perform that action at this time.
0 commit comments