blob: e69cd4dc8fbaf541a32f3e20313b18fb61e103bd [file] [log] [blame]
<h1 mat-dialog-title>Editing {{title}}</h1>
<div mat-dialog-content>
<mat-form-field>
<mat-label>Add a Name</mat-label>
<input matInput type="text" [(ngModel)]="data.name" #input required>
</mat-form-field>
<br>
<mat-form-field>
<mat-label>Add a Description</mat-label>
<input matInput type="text" [(ngModel)]="data.description" #input required>
</mat-form-field>
</div>
<div mat-dialog-actions>
<button mat-button (click)="onNoClick()">Cancel</button>
<button mat-raised-button [mat-dialog-close]="data" color="primary" [disabled]="data.name.length===0">Ok</button>
</div>