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

Rename modify room -> edit room

parent e201230e
No related merge requests found
......@@ -29,9 +29,8 @@
routerLink="/creator/room/{{room.id}}/comments">
Comments
</button>
<button *ngIf="!modify" (click)="showEditDialog()" mat-button color="primary"
matTooltip="Modify room's details">
Modify room
<button *ngIf="!modify" (click)="showEditDialog()" mat-button color="primary">
Edit room
</button>
<button *ngIf="modify" (click)="updateRoom(roomName.valueOf(), roomShortID.valueOf(), roomDescription.valueOf())" mat-button color="primary" matTooltip="Update room's details">
Update room
......@@ -62,10 +61,10 @@
</mat-form-field>
</mat-card-content>
<mat-card-actions>
<button (click)="hideEditDialog()" mat-button color="primary" matTooltip="Leave modification-dialog">
<button (click)="hideEditDialog()" mat-button color="primary">
Leave
</button>
<button (click)="updateRoom()" mat-button color="primary" matTooltip="Update properties">
<button (click)="updateRoom()" mat-button color="primary">
Update
</button>
</mat-card-actions>
......
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