changeset 891:074ce4891466

fix: selection of profile data only when not in draw mode
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 02 Oct 2018 13:40:53 +0200
parents 2e2ac0b88af9
children 81b84ad962f8
files client/src/application/Morphtool.vue client/src/layers/Identify.vue
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/application/Morphtool.vue	Mon Oct 01 17:46:58 2018 +0200
+++ b/client/src/application/Morphtool.vue	Tue Oct 02 13:40:53 2018 +0200
@@ -1,6 +1,6 @@
 <template>
     <div v-if="selectedBottleneck || selectedMorph" class="morphcontainer">
-        <div v-if="surveyList" class="ui-element card card-body shadow">
+        <div v-if="surveyList && !drawmode" class="ui-element card card-body shadow">
             <div class="headline">
                 <h5>{{selectedBottleneck.get("objnam")}}</h5>
             </div>
--- a/client/src/layers/Identify.vue	Mon Oct 01 17:46:58 2018 +0200
+++ b/client/src/layers/Identify.vue	Tue Oct 02 13:40:53 2018 +0200
@@ -37,7 +37,7 @@
 <style lang="scss">
 .features {
   height: $identify-height;
-  overflow-y: scroll;
+  overflow-y: auto;
   margin-bottom: $x-large-offset + $large-offset;
 }
 .versioninfo {