Merge pull request 'feat: add decimal places for longitude and latitude inputs in CustomerAddressEdit' (!1199) from fixDecimalP into master
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #1199
Reviewed-by: Carlos Satorres <carlossa@verdnatura.es>
This commit is contained in:
Pablo Natek 2025-01-13 07:03:16 +00:00
commit 8ce4fc38e2
1 changed files with 7 additions and 1 deletions

View File

@ -247,8 +247,14 @@ function handleLocation(data, location) {
:label="t('Longitude')"
clearable
v-model="data.longitude"
:decimal-places="7"
/>
<VnInputNumber
:label="t('Latitude')"
clearable
v-model="data.latitude"
:decimal-places="7"
/>
<VnInputNumber :label="t('Latitude')" clearable v-model="data.latitude" />
</VnRow>
<h4 class="q-mb-xs">{{ t('Notes') }}</h4>
<VnRow