Skip to content

Commit

Permalink
rename labels and add tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
ThrownLemon committed Jul 5, 2022
1 parent 33069c4 commit 006ffc0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions firebase-debug.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[debug] [2022-07-05T05:32:10.373Z] ----------------------------------------------------------------------
[debug] [2022-07-05T05:32:10.374Z] Command: C:\Program Files\nodejs\node.exe C:\Program Files\nodejs\node_modules\firebase-tools\lib\bin\firebase.js deploy
[debug] [2022-07-05T05:32:10.375Z] CLI Version: 11.1.0
[debug] [2022-07-05T05:32:10.375Z] Platform: win32
[debug] [2022-07-05T05:32:10.375Z] Node Version: v18.4.0
[debug] [2022-07-05T05:32:10.375Z] Time: Tue Jul 05 2022 15:32:10 GMT+1000 (Australian Eastern Standard Time)
[debug] [2022-07-05T05:32:10.375Z] ----------------------------------------------------------------------
[debug]
[debug] [2022-07-05T05:32:10.422Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
[debug] [2022-07-05T05:32:10.423Z] > authorizing via signed-in user ([email protected])
[debug] [2022-07-05T05:32:10.423Z] [iam] checking project conceal-hub for permissions ["firebase.projects.get","firebasehosting.sites.update"]
[debug] [2022-07-05T05:32:10.424Z] >>> [apiv2][query] POST https://cloudresourcemanager.googleapis.com/v1/projects/conceal-hub:testIamPermissions [none]
[debug] [2022-07-05T05:32:10.425Z] >>> [apiv2][body] POST https://cloudresourcemanager.googleapis.com/v1/projects/conceal-hub:testIamPermissions {"permissions":["firebase.projects.get","firebasehosting.sites.update"]}
8 changes: 4 additions & 4 deletions src/app/modules/messages/cloud/cloud.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ <h1 class="headline">Cloud <strong>Messages</strong></h1>
</mat-expansion-panel-header>
<div fxLayout="column" fxLayoutGap="10px">
<button fxFlex mat-stroked-button color="accent" [class.selected]="isIncoming" (click)="this.inComing()">
<div fxLayoutAlign="center center"><mat-icon class="icon">call_received</mat-icon>Received</div>
<div fxLayoutAlign="center center"><mat-icon class="icon">call_received</mat-icon>Incoming</div>
</button>
<button fxFlex mat-stroked-button color="accent" [class.selected]="!isIncoming" (click)="this.outGoing()">
<div fxLayoutAlign="center center"><mat-icon class="icon">call_made</mat-icon>Sent</div>
<div fxLayoutAlign="center center"><mat-icon class="icon">call_made</mat-icon>Outgoing</div>
</button>
<button fxFlex mat-flat-button color="accent" (click)="this.getMessages()" [disabled]="this.isLoadingResults">
<div fxLayoutAlign="center center"><mat-icon class="icon">refresh</mat-icon>Refresh</div>
Expand Down Expand Up @@ -89,8 +89,8 @@ <h1 class="headline">Cloud <strong>Messages</strong></h1>
<th mat-header-cell *matHeaderCellDef mat-sort-header> Message </th>
<td mat-cell *matCellDef="let item">
<div fxLayout="row" fxLayoutAlign="start center" class="capitalize">
<span *ngIf="revalAll || revealItem === item.id">{{item.message}}</span>
<span *ngIf="!revalAll && revealItem !== item.id">######</span>
<span *ngIf="revalAll || revealItem === item.id" matTooltip="Conceal this message">{{item.message}}</span>
<span *ngIf="!revalAll && revealItem !== item.id" matTooltip="Reveal this message">######</span>
</div>
</td>
</ng-container>
Expand Down

0 comments on commit 006ffc0

Please sign in to comment.