# HG changeset patch # User Thomas Junk # Date 1568729325 -7200 # Node ID 3759b47f20f3dcde4731052885402d231e428ef7 # Parent d6c38a22c71edb2ffb5e5f2b3cdb1b38e8f59318 FD_import: change unit of depth to meter for consistency diff -r d6c38a22c71e -r 3759b47f20f3 client/src/components/importconfiguration/ScheduledImports.vue --- a/client/src/components/importconfiguration/ScheduledImports.vue Tue Sep 17 16:06:54 2019 +0200 +++ b/client/src/components/importconfiguration/ScheduledImports.vue Tue Sep 17 16:08:45 2019 +0200 @@ -718,7 +718,7 @@ this.maxWidth = value; }, setDepth(value) { - this.depth = value; + this.depth = parseInt(value * 100); }, setSourceOrganization(value) { this.sourceOrganization = value; diff -r d6c38a22c71e -r 3759b47f20f3 client/src/components/importconfiguration/types/Fairwaydimensions.vue --- a/client/src/components/importconfiguration/types/Fairwaydimensions.vue Tue Sep 17 16:06:54 2019 +0200 +++ b/client/src/components/importconfiguration/types/Fairwaydimensions.vue Tue Sep 17 16:08:45 2019 +0200 @@ -91,9 +91,10 @@ @input="depthChanged" class="depth form-control form-control-sm" type="number" - :value="depth" + :value="depthInMeter" + step="0.1" /> -
cm
+
m