- ver 1.2.47 :

- corretto errore di modifica scheda
- aggiunto scraping (fase 1)
This commit is contained in:
Surya Paolo
2025-05-16 10:26:29 +02:00
parent b7ecd60fc3
commit 810815a12a
23 changed files with 103 additions and 80 deletions

View File

@@ -830,7 +830,7 @@ export const useProducts = defineStore('Products', {
if (!id) {
return null;
}
if (!this.products || forza) {
if (this.products.length === 0 || forza) {
// Se non lo carico all'avvio, allora fai la chiamata al server
prod = await this.loadProductById(id);
} else {