comparison client/src/components/importconfiguration/ScheduledImports.vue @ 4410:3759b47f20f3

FD_import: change unit of depth to meter for consistency
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 17 Sep 2019 16:08:45 +0200
parents 6f31a99cd92d
children 008bc1ae8897
comparison
equal deleted inserted replaced
4409:d6c38a22c71e 4410:3759b47f20f3
716 }, 716 },
717 setMaxWidth(value) { 717 setMaxWidth(value) {
718 this.maxWidth = value; 718 this.maxWidth = value;
719 }, 719 },
720 setDepth(value) { 720 setDepth(value) {
721 this.depth = value; 721 this.depth = parseInt(value * 100);
722 }, 722 },
723 setSourceOrganization(value) { 723 setSourceOrganization(value) {
724 this.sourceOrganization = value; 724 this.sourceOrganization = value;
725 }, 725 },
726 calcCronString() { 726 calcCronString() {