Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c48cc477da | ||
| 5967665e9f | |||
|
|
393c420983 | ||
| 456623b403 |
@@ -57,3 +57,4 @@ Ajouter dans le fichier .env du frontend
|
||||
### Changed
|
||||
|
||||
### Fixed
|
||||
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
parameters:
|
||||
app.version: '0.0.58'
|
||||
app.version: '0.0.60'
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { AddressPayload } from "~/services/address"
|
||||
import type { AddressPayload } from "~/services/address"
|
||||
|
||||
|
||||
const route = useRoute()
|
||||
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user