Skip to content

Commit

Permalink
fix: remove ;
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Sternberg <[email protected]>
#100
  • Loading branch information
IngoSternberg committed Jun 30, 2024
1 parent 1f089d3 commit dc9e8ab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
hasBackButton="true"
headerTitle="Create a new Case"
headerSubtitle="View all facilities and their status"
(backButtonClick)="router.navigate(['../'], { relativeTo: route });"
(backButtonClick)="router.navigate(['../'], { relativeTo: route })"
></ix-content-header>

<ix-content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
hasBackButton="true"
headerTitle="Details of Facility {{ _case.title }}"
headerSubtitle="View all facilities and their status"
(backButtonClick)="router.navigate(['../'], { relativeTo: route });"
(backButtonClick)="router.navigate(['../'], { relativeTo: route })"
></ix-content-header>

<ix-content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
hasBackButton="true"
headerTitle="Facilities Overview"
headerSubtitle="View all facilities and their status"
(backButtonClick)="router.navigate(['../'], { relativeTo: route });"
(backButtonClick)="router.navigate(['../'], { relativeTo: route })"
></ix-content-header>

<ix-content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
hasBackButton="true"
headerTitle="Details of Facility {{ facility.heading }}"
headerSubtitle="On this page you can see detailed information about the facility including charts about the pump and environment data"
(backButtonClick)="router.navigate(['../'], { relativeTo: route });"
(backButtonClick)="router.navigate(['../'], { relativeTo: route })"
></ix-content-header>

<ix-content>
Expand Down

0 comments on commit dc9e8ab

Please sign in to comment.