From b48330dbb8e78a39242d378ed174361e12b654dc Mon Sep 17 00:00:00 2001
From: Klaus Quibeldey-Cirkel <klaus.quibeldey-cirkel@mni.thm.de>
Date: Tue, 23 Jul 2019 15:51:34 +0200
Subject: [PATCH] display demo label

---
 .../components/shared/footer/footer.component.html   | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/src/app/components/shared/footer/footer.component.html b/src/app/components/shared/footer/footer.component.html
index 058a91fc6..3e226fde7 100644
--- a/src/app/components/shared/footer/footer.component.html
+++ b/src/app/components/shared/footer/footer.component.html
@@ -1,26 +1,24 @@
 <footer>
   <mat-toolbar id="footer-toolbar">
-    <button mat-button *ngIf="router.url !== '/home'" (click)="navToBlog()">
+    <button (click)="navToBlog()" *ngIf="router.url !== '/home'" mat-button>
       <mat-icon>notes</mat-icon>
       <span *ngIf="deviceType === 'desktop'">
         {{ 'footer.blog' | translate }}
       </span>
     </button>
-    <button mat-button *ngIf="router.url === '/home'" (click)="navToDemoSession()">
+    <button (click)="navToDemoSession()" *ngIf="router.url === '/home'" mat-button>
       <mat-icon>input</mat-icon>
-      <span *ngIf="deviceType === 'desktop'">
-        {{ 'footer.demo' | translate}}
-      </span>
+      {{ 'footer.demo' | translate}}
     </button>
     <span class="fill-remaining-space"></span>
-    <button mat-button (click)="navToDSGVO()">
+    <button (click)="navToDSGVO()" mat-button>
       <mat-icon>security</mat-icon>
       <span *ngIf="deviceType === 'desktop'">
         {{ 'footer.dsgvo' | translate}}
       </span>
     </button>
     <span class="fill-remaining-space"></span>
-    <button mat-button (click)="navToImprint()">
+    <button (click)="navToImprint()" mat-button>
       <mat-icon>info</mat-icon>
       <span *ngIf="deviceType === 'desktop'">
         {{ 'footer.imprint' | translate}}
-- 
GitLab