projects
/
demos
/
angular
/
stored-login
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
370f2be
)
TODO:selbst
author
Kai Moritz
<kai@juplo.de>
Sat, 6 Sep 2025 23:59:06 +0000
(
01:59
+0200)
committer
Kai Moritz
<kai@juplo.de>
Sat, 6 Sep 2025 23:59:06 +0000
(
01:59
+0200)
src/app/login/login.component.ts
patch
|
blob
|
history
diff --git
a/src/app/login/login.component.ts
b/src/app/login/login.component.ts
index
69b6e15
..
e12313f
100644
(file)
--- a/
src/app/login/login.component.ts
+++ b/
src/app/login/login.component.ts
@@
-1,3
+1,4
@@
+import { NgIf } from '@angular/common';
import { Component } from '@angular/core';
import { FormsModule } from "@angular/forms";
import { Store } from '@ngrx/store';
@@
-6,7
+7,10
@@
import { selectToken, selectError, selectIsLoading } from '../store/login.select
@Component({
selector: 'app-login',
- imports: [FormsModule],
+ imports: [
+ NgIf,
+ FormsModule,
+ ],
templateUrl: './login.component.html',
styleUrl: './login.component.less'
})