mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
fix(challenge-6): change text for everyone button and remove whitespace in button class
This commit is contained in:
@@ -18,7 +18,7 @@ import { UserStore } from './user.store';
|
||||
imports: [InformationComponent, RouterLink, ButtonComponent],
|
||||
selector: 'app-login',
|
||||
template: `
|
||||
<header class="flex gap-3 items-center">
|
||||
<header class="flex items-center gap-3">
|
||||
Log as :
|
||||
<button app-button (click)="admin()">Admin</button>
|
||||
<button app-button (click)="manager()">Manager</button>
|
||||
@@ -26,7 +26,7 @@ import { UserStore } from './user.store';
|
||||
<button app-button (click)="writer()">Writer</button>
|
||||
<button app-button (click)="readerWriter()">Reader and Writer</button>
|
||||
<button app-button (click)="client()">Client</button>
|
||||
<button app-button (click)="everyone()">Client</button>
|
||||
<button app-button (click)="everyone()">Everyone</button>
|
||||
</header>
|
||||
|
||||
<app-information></app-information>
|
||||
|
||||
Reference in New Issue
Block a user