diff --git a/src/frontend/src/components/layout/edit/destination/DestinationEditHandlingCost.vue b/src/frontend/src/components/layout/edit/destination/DestinationEditHandlingCost.vue index 0c5758b..0c52506 100644 --- a/src/frontend/src/components/layout/edit/destination/DestinationEditHandlingCost.vue +++ b/src/frontend/src/components/layout/edit/destination/DestinationEditHandlingCost.vue @@ -58,7 +58,7 @@ export default { }, repackaging: { get() { - return this.destination?.repackaging_costs?.toFixed(2) ?? '0.00'; + return this.destination?.repackaging_costs?.toFixed(2) ?? ''; }, set(value) { return this.destination && (this.destination.repackaging_costs = value); @@ -66,7 +66,7 @@ export default { }, handling: { get() { - return this.destination?.handling_costs?.toFixed(2) ?? '0.00'; + return this.destination?.handling_costs?.toFixed(2) ?? ''; }, set(value) { return this.destination && (this.destination.handling_costs = value); @@ -74,7 +74,7 @@ export default { }, disposal: { get() { - return this.destination?.disposal_costs?.toFixed(2) ?? '0.00'; + return this.destination?.disposal_costs?.toFixed(2) ?? ''; }, set(value) { return this.destination && (this.destination.disposal_costs = value);