From efeb9bc76e0688c623e8a97eb60527aa5a8855df Mon Sep 17 00:00:00 2001
From: "mathias.chouet" <mathias.chouet@irstea.fr>
Date: Thu, 18 Jul 2019 11:40:38 +0200
Subject: [PATCH] Fix bug related to #248

---
 src/app/components/param-link/param-link.component.scss   | 8 --------
 .../components/results-graph/results-graph.component.html | 4 ++--
 2 files changed, 2 insertions(+), 10 deletions(-)

diff --git a/src/app/components/param-link/param-link.component.scss b/src/app/components/param-link/param-link.component.scss
index 6cbd9bf46..412764067 100644
--- a/src/app/components/param-link/param-link.component.scss
+++ b/src/app/components/param-link/param-link.component.scss
@@ -32,14 +32,6 @@
         }
     }
 
-    /* ::ng-deep .mat-select-panel mat-option.mat-option {
-        height: unset;
-    }
-      
-    ::ng-deep .mat-option-text.mat-option-text {
-        white-space: normal;
-    } */
-
     .status-icons-container {
         position: absolute;
         top: -8px;
diff --git a/src/app/components/results-graph/results-graph.component.html b/src/app/components/results-graph/results-graph.component.html
index 8b48221a4..50024d806 100644
--- a/src/app/components/results-graph/results-graph.component.html
+++ b/src/app/components/results-graph/results-graph.component.html
@@ -35,8 +35,8 @@
     <div fxHide.xs fxFlex.gt-xs="0 0 16px"></div>
 
     <mat-form-field fxFlex.gt-xs="1 0 auto" fxFlex.lt-sm="1 0 100%">
-        <mat-select id="selectY" [placeholder]="uitextSelectY" [(value)]="chartY" [title]="getChartAxisLabel(y)">
-            <mat-option *ngFor="let y of availableChartAxis" [value]="y">
+        <mat-select id="selectY" [placeholder]="uitextSelectY" [(value)]="chartY">
+            <mat-option *ngFor="let y of availableChartAxis" [value]="y" [title]="getChartAxisLabel(y)">
                 {{ getChartAxisLabel(y) }}
             </mat-option>
         </mat-select>
-- 
GitLab