- inizio di modifiche all'editor di Pagine Web

This commit is contained in:
Surya Paolo
2025-09-05 01:05:36 +02:00
parent 574f389200
commit 63d0f865fd
55 changed files with 5356 additions and 3600 deletions

View File

@@ -170,7 +170,7 @@ export default defineComponent({
function removeFromCard() {
$q.dialog({
title: order.value.product.productInfo.name,
title: order.value.product?.productInfo?.name,
message: 'Sicuro di voler rimuovere il prodotto dal carrello?',
ok: {
label: 'Rimuovi',
@@ -222,7 +222,7 @@ export default defineComponent({
function mounted() {
endload.value = false;
weight.value = props.order.product?.productInfo.weight;
weight.value = props.order.product?.productInfo?.weight;
price.value = props.order.price;
if (props.order.quantity !== 0) {
orderQuantity.value = props.order.quantity;