From 2e81f7a03bb78b6564bfb97f17706cbbb858c215 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lukas=20Mau=C3=9F?= <lukas.mauss@mni.thm.de>
Date: Tue, 29 Jan 2019 11:21:31 +0100
Subject: [PATCH] Change order of types of contents

---
 .../content-create-page.component.html                 | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

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 b1456b8d9..c4e7185fb 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>
-- 
GitLab