From 611a48809fd7afd98af3e5a3745e6eeee1dcb96f Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Mon, 29 May 2023 00:42:24 +0200 Subject: [PATCH] Add store name to chart. --- site/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/utils.js b/site/utils.js index f5ee078..db24aab 100644 --- a/site/utils.js +++ b/site/utils.js @@ -360,7 +360,7 @@ function showChart(canvasDom, items) { } return { - label: product.name, + label: (product.store ? product.store + " " : "") + product.name, data: prices, }; });