Skip to content
Snippets Groups Projects
Commit 23ba6d38 authored by Thomas Lenz's avatar Thomas Lenz
Browse files

Remove unnecessary tooltips

parent 5b9877b9
No related merge requests found
...@@ -24,10 +24,10 @@ ...@@ -24,10 +24,10 @@
routerLink="/creator/room/{{room.id}}/comments"> routerLink="/creator/room/{{room.id}}/comments">
Comments Comments
</button> </button>
<button mat-button color="warn" matTooltip="Enables deletion dialog" (click)="showDeletionDialog()"> <button mat-button color="warn" (click)="showDeletionDialog()">
Delete room Delete room
</button> </button>
<button mat-button color="primary" matTooltip="Go back to last page" (click)="goBack()"> <button mat-button color="primary" (click)="goBack()">
Go back Go back
</button> </button>
</mat-card-actions> </mat-card-actions>
...@@ -36,10 +36,10 @@ ...@@ -36,10 +36,10 @@
<mat-card-header><h3>Do you really want to delete this room?<br>This action can not be undone.</h3> <mat-card-header><h3>Do you really want to delete this room?<br>This action can not be undone.</h3>
</mat-card-header> </mat-card-header>
<mat-card-content> <mat-card-content>
<button mat-raised-button color="warn" matTooltip="Delete selected room" (click)="deleteRoom(room)"> <button mat-raised-button color="warn" (click)="deleteRoom(room)">
Delete room Delete room
</button> </button>
<button mat-raised-button color="primary" matTooltip="Leave delete dialog" (click)="hideDeletionDialog()"> <button mat-raised-button color="primary" (click)="hideDeletionDialog()">
Leave Leave
</button> </button>
</mat-card-content> </mat-card-content>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment