File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/components/router Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ export class Router implements ComponentInterface {
233233 animation ?: AnimationBuilder
234234 ) : Promise < boolean > {
235235 if ( ! segments ) {
236- printIonError ( '[ion-router] - URL is not part of the routing set' ) ;
236+ printIonError ( '[ion-router] - URL is not part of the routing set. ' ) ;
237237 return false ;
238238 }
239239
@@ -254,7 +254,7 @@ export class Router implements ComponentInterface {
254254 const routes = readRoutes ( this . el ) ;
255255 const chain = findChainForSegments ( segments , routes ) ;
256256 if ( ! chain ) {
257- printIonError ( '[ion-router] - The path does not match any route' ) ;
257+ printIonError ( '[ion-router] - The path does not match any route. ' ) ;
258258 return false ;
259259 }
260260
@@ -339,7 +339,7 @@ export class Router implements ComponentInterface {
339339 animation ?: AnimationBuilder
340340 ) : Promise < boolean > {
341341 if ( this . busy ) {
342- printIonWarning ( '[ion-router] - Router is busy, transition was cancelled' ) ;
342+ printIonWarning ( '[ion-router] - Router is busy, transition was cancelled. ' ) ;
343343 return false ;
344344 }
345345 this . busy = true ;
You can’t perform that action at this time.
0 commit comments