Skip to content

Commit c8fc6d1

Browse files
committed
fix: 🐛 treat isActive to case-insensitive
Closes: #3656
1 parent 084e778 commit c8fc6d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/util/route.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ function isObjectEqual (a = {}, b = {}): boolean {
118118

119119
export function isIncludedRoute (current: Route, target: Route): boolean {
120120
return (
121-
current.path.replace(trailingSlashRE, '/').indexOf(
122-
target.path.replace(trailingSlashRE, '/')
121+
current.path.replace(trailingSlashRE, '/').toLowerCase().indexOf(
122+
target.path.replace(trailingSlashRE, '/').toLowerCase()
123123
) === 0 &&
124124
(!target.hash || current.hash === target.hash) &&
125125
queryIncludes(current.query, target.query)

0 commit comments

Comments
 (0)