From: Eduardo San Martin Morote Date: Wed, 4 Nov 2020 11:34:38 +0000 (+0100) Subject: chore: correct name in devtools X-Git-Tag: v4.0.0-rc.2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55102959d8b762aae1efee4c3e1ba07a46560671;p=thirdparty%2Fvuejs%2Frouter.git chore: correct name in devtools --- diff --git a/src/devtools.ts b/src/devtools.ts index 89d801dc..5082c1eb 100644 --- a/src/devtools.ts +++ b/src/devtools.ts @@ -169,7 +169,7 @@ export function addDevtools(app: App, router: Router, matcher: RouterMatcher) { api.addInspector({ id: routerInspectorId, - label: 'Routes' + id ? ' ' + id : '', + label: 'Routes' + (id ? ' ' + id : ''), icon: 'book', treeFilterPlaceholder: 'Search routes', })