-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #607 from lblod/GN-4599-document-not-saved-even-th…
…ough-it-is-saved GN-4599: prevent confirmation dialog from popping up twice.
- Loading branch information
Showing
2 changed files
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"frontend-gelinkt-notuleren": patch | ||
--- | ||
|
||
Update regex in `isLoadingRoute` function to take underscore syntax into account |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export default function isLoadingRoute(routeInfo) { | ||
const regex = new RegExp('^(.+-loading|loading)$'); | ||
const regex = new RegExp('^(.+(-|_)loading|loading)$'); | ||
return regex.test(routeInfo.localName); | ||
} |