forked from Cloud-CV/EvalAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Frontend_V2: Fix console error of change in expression value in devel…
…opment setup(Cloud-CV#3550) * fix change in expression value * assign value on component initialization * add line Co-authored-by: Rishabh Jain <[email protected]>
- Loading branch information
1 parent
65ef276
commit d70a544
Showing
2 changed files
with
31 additions
and
7 deletions.
There are no files selected for viewing
8 changes: 4 additions & 4 deletions
8
frontend_v2/src/app/components/publiclists/publiclists.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,13 @@ | ||
<app-side-bar *ngIf="authService.isAuth"></app-side-bar> | ||
<app-side-bar *ngIf="isAuth"></app-side-bar> | ||
<app-header-static></app-header-static> | ||
<div class="web-container" [class.center]="!authService.isAuth"> | ||
<div class="web-container" [class.center]="!isAuth"> | ||
<div class="dashboard-flex"> | ||
<div class="dashboard-content"> | ||
<router-outlet></router-outlet> | ||
</div> | ||
<app-footer [isDash]="true" *ngIf="authService.isAuth"></app-footer> | ||
<app-footer [isDash]="true" *ngIf="isAuth"></app-footer> | ||
</div> | ||
</div> | ||
<div class="clearfix"></div> | ||
|
||
<app-footer *ngIf="!authService.isAuth"></app-footer> | ||
<app-footer *ngIf="!isAuth"></app-footer> |
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