changeset 798:383fac3e5d1e

Fairway profile WIP
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 27 Sep 2018 12:07:29 +0200
parents 644172f201e8
children 959892ffd72c
files client/src/layers/Identify.vue
diffstat 1 files changed, 8 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/layers/Identify.vue	Thu Sep 27 12:01:31 2018 +0200
+++ b/client/src/layers/Identify.vue	Thu Sep 27 12:07:29 2018 +0200
@@ -12,14 +12,14 @@
                 </div>
                 <hr>
                 <div class="d-flex flex-column">
-                  <div v-for="feature of identifiedFeatures" :key="feature.getId()">
-                    <div v-if="feature.getId()">
-                      {{ feature.getId().replace(/[.][^.]*$/,"") /* cut away everything from the last . to the end */}}:
-                      <small v-for="(value, key) in prepareProperties(feature)" :key="key">
-                        <div v-if="value">{{key}}:{{value}}</div>
-                      </small>
+                    <div v-for="feature of identifiedFeatures" :key="feature.getId()">
+                        <div v-if="feature.getId()">
+                            {{ feature.getId().replace(/[.][^.]*$/,"") /* cut away everything from the last . to the end */}}:
+                            <small v-for="(value, key) in prepareProperties(feature)" :key="key">
+                                <div v-if="value">{{key}}:{{value}}</div>
+                            </small>
+                        </div>
                     </div>
-                  </div>
                 </div>
             </div>
         </div>
@@ -35,6 +35,7 @@
   background-color: white;
   margin-left: $small-offset;
   opacity: $slight-transparent;
+  text-align: left;
 }
 
 .identifycollapsed {