From b19f80d7815257b477ffdb266ec1ac9a9a58b1e6 Mon Sep 17 00:00:00 2001 From: Klaus Quibeldey-Cirkel <klaus.quibeldey-cirkel@mni.thm.de> Date: Tue, 17 Sep 2019 11:40:44 +0200 Subject: [PATCH] h3 -> p --- .../room-creator-page/room-creator-page.component.html | 4 ++-- .../room-participant-page.component.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/components/creator/room-creator-page/room-creator-page.component.html b/src/app/components/creator/room-creator-page/room-creator-page.component.html index a58b6c85d..8d877b403 100644 --- a/src/app/components/creator/room-creator-page/room-creator-page.component.html +++ b/src/app/components/creator/room-creator-page/room-creator-page.component.html @@ -42,9 +42,9 @@ </button> </div> <mat-card-content *ngIf="room.description" fxLayoutAlign="center"> - <h3> + <p> {{ room.description.trim() }} - </h3> + </p> </mat-card-content> <mat-grid-list cols="{{viewModuleCount}}" rowHeight="1:1"> <mat-grid-tile> diff --git a/src/app/components/participant/room-participant-page/room-participant-page.component.html b/src/app/components/participant/room-participant-page/room-participant-page.component.html index 8bde7af7e..a34bbfaca 100644 --- a/src/app/components/participant/room-participant-page/room-participant-page.component.html +++ b/src/app/components/participant/room-participant-page/room-participant-page.component.html @@ -24,7 +24,7 @@ </div> <mat-divider></mat-divider> <mat-card-content *ngIf="room.description" fxLayoutAlign="center"> - <h3>{{room.description.trim()}}</h3> + <p>{{room.description.trim()}}</p> </mat-card-content> <mat-grid-list cols="1" rowHeight="2:1"> <mat-grid-tile> -- GitLab