FEAT: Rename 'Depth' to 'Draft' in Berth model and update related components for consistency

This commit is contained in:
2025-06-17 16:18:29 +02:00
parent adf226a38a
commit 150f7f9aa9
3 changed files with 76 additions and 61 deletions

View File

@@ -177,15 +177,15 @@
<v-col cols="12" md="4">
<v-text-field
v-if="editMode"
v-model="editedBerth.Depth"
label="Depth (ft/m)"
v-model="editedBerth.Draft"
label="Draft (ft/m)"
variant="outlined"
density="compact"
/>
<div v-else class="field-display">
<span class="field-label">Depth:</span>
<span class="field-label">Draft:</span>
<span class="field-value">
{{ displayMeasurement(berth.Depth) }}
{{ displayMeasurement(berth.Draft) }}
</span>
</div>
</v-col>