Compare commits

..

11 Commits

5 changed files with 13 additions and 16 deletions
-1
View File
@@ -57,4 +57,3 @@ Ajouter dans le fichier .env du frontend
### Changed
### Fixed
+1 -1
View File
@@ -1,2 +1,2 @@
parameters:
app.version: '0.0.60'
app.version: '0.0.57'
+1 -1
View File
@@ -29,7 +29,7 @@
</template>
<script setup lang="ts">
import type { AddressPayload } from "~/services/address"
import { AddressPayload } from "~/services/address"
const route = useRoute()
@@ -14,7 +14,6 @@
:min="0"
:max="10"
wrapperClass="w-44 flex-col"
inputClass="font-medium"
/>
</div>
<UiNumberInput
@@ -22,7 +21,6 @@
v-model="localOtherQuantity"
:disabled="!isAdmin"
wrapperClass="w-44 flex-col"
inputClass="font-medium"
/>
</div>
</form>
+5 -5
View File
@@ -188,10 +188,10 @@
<UiButton
v-if="auth.isAdmin"
type="submit"
class="inline-flex mb-16 items-center justify-center text-xl text-white uppercase bg-primary-500 h-[50px] px-8 rounded hover:opacity-80 gap-2 justify-self-end"
class="text-xl uppercase bg-primary-500 text-white h-[50px] w-[272px] mb-16"
>
<Icon name="mdi:check" size="28" />
Valider
Enregistrer
</UiButton>
</div>
</div>
@@ -327,7 +327,7 @@ const filteredVehicles = computed<VehicleData[]>(() => {
watch(
() => idReception,
async (id) => {
if (!Number.isFinite(id) || id <= 0) {
if (id === null) {
return
}
isLoading.value = true
@@ -500,7 +500,7 @@ async function loadTypes() {
try {
receptionTypes.value = await getReceptionTypeList()
} finally {
isLoadingTypes.value = false
isLoadingSuppliers.value = false
}
}