-
Notifications
You must be signed in to change notification settings - Fork 2
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 #155 from SakuraIsayeki/angular_upgrade
Update Web App to Angular 17.1
- Loading branch information
Showing
47 changed files
with
747 additions
and
785 deletions.
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
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
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
12 changes: 7 additions & 5 deletions
12
wowskarma.app/src/app/pages/fallbacks/not-found/not-found.component.html
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,13 +1,15 @@ | ||
<div class="row justify-content-around align-items-center"> | ||
<div class="col-lg-4 order-3 order-lg-1"> | ||
<img src="../../../../assets/media/akatsuki-torp-oops.png" | ||
class="my-5 my-lg-1 mx-lg-5 img-fluid rounded h-50" | ||
alt="Oops, Akatsuki messed up her salvo." | ||
title="Oops, Akatsuki messed up her salvo."> | ||
<img | ||
ngSrc="../../../../assets/media/akatsuki-torp-oops.png" fill | ||
class="position-static my-5 my-lg-1 mx-lg-5 h-50" | ||
alt="Oops, Akatsuki messed up her salvo." | ||
title="Oops, Akatsuki messed up her salvo." | ||
> | ||
</div> | ||
|
||
<div class="col-lg-8 text-center order-1 order-lg-3"> | ||
<h1 class="display-1">404</h1> | ||
<h3 class="text-warning">{{message}}</h3> | ||
<h3 class="text-warning">{{message()}}</h3> | ||
</div> | ||
</div> |
9 changes: 4 additions & 5 deletions
9
wowskarma.app/src/app/pages/fallbacks/not-found/not-found.component.ts
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,12 +1,11 @@ | ||
import { Component, Input } from '@angular/core'; | ||
import { ChangeDetectionStrategy, Component, input } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-not-found', | ||
templateUrl: './not-found.component.html', | ||
styleUrls: ['./not-found.component.scss'] | ||
styleUrls: ['./not-found.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush | ||
}) | ||
export class NotFoundComponent { | ||
@Input() message = 'Sorry, there\'s nothing at this address.'; | ||
|
||
constructor() { } | ||
message = input("Sorry, there's nothing at this address."); | ||
} |
Oops, something went wrong.