Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
arsnova-lite
Commits
dfd88c35
Verified
Commit
dfd88c35
authored
7 years ago
by
Lukas Mauß
Committed by
Lukas Maximilian Kimpel
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Change demo-id
parent
45da1c83
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!87
participant home screen api
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/join-room/join-room.component.html
+1
-1
1 addition, 1 deletion
src/app/join-room/join-room.component.html
src/app/join-room/join-room.component.ts
+1
-1
1 addition, 1 deletion
src/app/join-room/join-room.component.ts
with
2 additions
and
2 deletions
src/app/join-room/join-room.component.html
+
1
−
1
View file @
dfd88c35
...
@@ -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>
...
...
This diff is collapsed.
Click to expand it.
src/app/join-room/join-room.component.ts
+
1
−
1
View file @
dfd88c35
...
@@ -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
)]);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment