diff --git a/src/app/components/creator/content-create-page/content-create-page.component.html b/src/app/components/creator/content-create-page/content-create-page.component.html index b1456b8d995fdfb7215cffd4a68fd5270b8fd10e..c4e7185fb21d293608a5dcb0a20674f0c72d8a1a 100644 --- a/src/app/components/creator/content-create-page/content-create-page.component.html +++ b/src/app/components/creator/content-create-page/content-create-page.component.html @@ -1,11 +1,6 @@ <div fxLayout="column" fxLayoutAlign="start" fxLayoutGap="20px" fxFill> <div fxLayout="row" fxLayoutAlign="center"> <mat-tab-group> - <mat-tab label="Text"> - <div class="tab-container"> - <app-content-creator [format]="'text'" [contentGroups]="contentGroups"></app-content-creator> - </div> - </mat-tab> <mat-tab label="Single / Multiple Choice"> <div class="tab-container"> <app-content-creator [format]="'choice'" [contentGroups]="contentGroups"></app-content-creator> @@ -21,6 +16,11 @@ <app-content-creator [format]="'yesno'" [contentGroups]="contentGroups"></app-content-creator> </div> </mat-tab> + <mat-tab label="Text"> + <div class="tab-container"> + <app-content-creator [format]="'text'" [contentGroups]="contentGroups"></app-content-creator> + </div> + </mat-tab> </mat-tab-group> </div> </div>