QUick fixes in inventoryitems

This commit is contained in:
2024-09-06 09:43:02 +02:00
parent ab7df093c4
commit c8265aebea
2 changed files with 13 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
<script setup>
import HistoryDisplay from "~/components/HistoryDisplay.vue";
import dayjs from "dayjs";
import {useSupabaseSelectSingle} from "~/composables/useSupabase.js";
definePageMeta({
middleware: "auth"
@@ -22,11 +23,11 @@ const itemInfo = ref({
//Functions
const setupPage = async () => {
if(mode.value === "show" || mode.value === "edit"){
if(mode.value === "show"){
itemInfo.value = await useSupabaseSelectSingle("inventoryitems", route.params.id, "*, vendor(*)")
} else if(mode.value === "edit") {
itemInfo.value = await useSupabaseSelectSingle("inventoryitems", route.params.id, "*")
}
if(mode.value === "edit") itemInfo.value = itemInfo.value
}
const cancelEditorCreate = () => {