Add store name to chart.

This commit is contained in:
Mario Zechner 2023-05-29 00:42:24 +02:00
parent 2459bf05f5
commit 611a48809f

View File

@ -360,7 +360,7 @@ function showChart(canvasDom, items) {
}
return {
label: product.name,
label: (product.store ? product.store + " " : "") + product.name,
data: prices,
};
});