Fixed Adress Loading when customer is preset

Added more Display Options
Enabled Timeline in Devtools
Changed Style of Document Display
This commit is contained in:
2024-04-16 10:51:33 +02:00
parent 34dfb334ec
commit aa322a3234
4 changed files with 51 additions and 31 deletions

View File

@@ -80,7 +80,10 @@ const setupPage = () => {
if(route.query.project) itemInfo.value.project = Number(route.query.project)
if(route.query.contact) itemInfo.value.contact = Number(route.query.contact)
if(route.query.customer) itemInfo.value.customer = Number(route.query.customer)
if(route.query.customer) {
itemInfo.value.customer = Number(route.query.customer)
setCustomerData()
}
}
}