Skip to content

Commit

Permalink
updated msal lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Geertvdc committed Nov 14, 2019
1 parent aa6d5ca commit 53525cf
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
14 changes: 7 additions & 7 deletions frontend/xpirit-beerxchange/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/xpirit-beerxchange/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@angular/cli": "~7.3.9",
"@angular/compiler-cli": "~7.2.0",
"@angular/language-service": "~7.2.0",
"@azure/msal-angular": "^0.1.2",
"@azure/msal-angular": "^0.1.4",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
Expand Down
2 changes: 1 addition & 1 deletion frontend/xpirit-beerxchange/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<span> Xpirit Beer Xchange </span>
<span class="example-fill-remaining-space"></span>
<span class="topbar-small" *ngIf="!user" id="notloggedin">NOT LOGGED IN</span>
<span class="topbar-small" *ngIf="user">{{ user.name }} (<app-view-credit></app-view-credit>)</span>
<span class="topbar-small" *ngIf="user">{{ user.displayableId }} (<app-view-credit></app-view-credit>)</span>
</mat-toolbar-row>
</mat-toolbar>
<mat-sidenav-container>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<h2>Fridge history <span *ngIf="beers.length > 0">({{beers.length}})</span></h2>
<p *ngIf="!(beers.length > 0)"><em>Loading beers...</em></p>

<div class="mat-elevation-z8">
<table mat-table [dataSource]="beers" class="w-100" *ngIf="beers.length > 0">
Expand Down

0 comments on commit 53525cf

Please sign in to comment.