Skip to content
Snippets Groups Projects
Commit aa6130e1 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Change demo-id

parent 2082dab3
No related merge requests found
Pipeline #13539 passed with stage
in 39 seconds
......@@ -7,7 +7,7 @@
<mat-error *ngIf="roomFormControl.hasError('required')">Please enter a room-id.</mat-error>
<mat-error *ngIf="roomFormControl.hasError('minlength')">A room-id has exactly 8 digits.</mat-error>
</mat-form-field>
<button mat-fab color="primary" type="submit">
<button mat-fab color="primary">
<mat-icon>send</mat-icon>
</button>
</div>
......
......@@ -22,7 +22,7 @@ export class JoinErrorStateMatcher implements ErrorStateMatcher {
export class JoinRoomComponent implements OnInit {
room: Room;
demoId = '17703069';
demoId = '82458028';
roomFormControl = new FormControl('', [Validators.required, Validators.minLength(8)]);
......
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