Skip to content
Snippets Groups Projects
Verified Commit dfd88c35 authored by Lukas Mauß's avatar Lukas Mauß Committed by Lukas Maximilian Kimpel
Browse files

Change demo-id

parent 45da1c83
Branches
Tags
1 merge request!87participant home screen api
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<mat-error *ngIf="roomFormControl.hasError('required')">Please enter a room-id.</mat-error> <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-error *ngIf="roomFormControl.hasError('minlength')">A room-id has exactly 8 digits.</mat-error>
</mat-form-field> </mat-form-field>
<button mat-fab color="primary" type="submit"> <button mat-fab color="primary">
<mat-icon>send</mat-icon> <mat-icon>send</mat-icon>
</button> </button>
</div> </div>
......
...@@ -22,7 +22,7 @@ export class JoinErrorStateMatcher implements ErrorStateMatcher { ...@@ -22,7 +22,7 @@ export class JoinErrorStateMatcher implements ErrorStateMatcher {
export class JoinRoomComponent implements OnInit { export class JoinRoomComponent implements OnInit {
room: Room; room: Room;
demoId = '17703069'; demoId = '82458028';
roomFormControl = new FormControl('', [Validators.required, Validators.minLength(8)]); 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