Compare commits

..

2 Commits

Author SHA1 Message Date
gitea-actions
c48cc477da chore: bump version to v0.0.60
All checks were successful
Auto Tag Develop / tag (push) Successful in 4s
Build Release Artefact / build (push) Successful in 1m16s
2026-02-26 08:46:45 +00:00
5967665e9f fix : page de modification reception qui crash en prod
All checks were successful
Auto Tag Develop / tag (push) Successful in 6s
2026-02-26 09:46:34 +01:00
3 changed files with 4 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
parameters:
app.version: '0.0.59'
app.version: '0.0.60'

View File

@@ -29,7 +29,7 @@
</template>
<script setup lang="ts">
import { AddressPayload } from "~/services/address"
import type { AddressPayload } from "~/services/address"
const route = useRoute()

View File

@@ -327,7 +327,7 @@ const filteredVehicles = computed<VehicleData[]>(() => {
watch(
() => idReception,
async (id) => {
if (id === null) {
if (!Number.isFinite(id) || id <= 0) {
return
}
isLoading.value = true
@@ -500,7 +500,7 @@ async function loadTypes() {
try {
receptionTypes.value = await getReceptionTypeList()
} finally {
isLoadingSuppliers.value = false
isLoadingTypes.value = false
}
}