fix: loading causing stale data to present in form(#650)

This commit is contained in:
Hayden 2023-12-01 11:57:43 -06:00 committed by GitHub
parent 321a83b634
commit 4d9131ba7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,11 @@
const labelStore = useLabelStore(); const labelStore = useLabelStore();
const labels = computed(() => labelStore.labels); const labels = computed(() => labelStore.labels);
const { data: nullableItem, refresh } = useAsyncData(async () => { const {
data: nullableItem,
refresh,
pending: requestPending,
} = useAsyncData(async () => {
const { data, error } = await api.items.get(itemId.value); const { data, error } = await api.items.get(itemId.value);
if (error) { if (error) {
toast.error("Failed to load item"); toast.error("Failed to load item");
@ -450,7 +454,7 @@
Delete Delete
</BaseButton> </BaseButton>
</div> </div>
<div class="space-y-6"> <div v-if="!requestPending" class="space-y-6">
<BaseCard class="overflow-visible"> <BaseCard class="overflow-visible">
<template #title> Edit Details </template> <template #title> Edit Details </template>
<template #title-actions> <template #title-actions>