From 29ae1b4034e95cd4f274e9f8e04f4e652de38b0b Mon Sep 17 00:00:00 2001 From: theknut Date: Fri, 19 Jan 2024 10:34:50 +0100 Subject: [PATCH] fix: wrong yAxisTicks logged in debug log --- ioBroker/DEV/NSPanelTs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ioBroker/DEV/NSPanelTs.ts b/ioBroker/DEV/NSPanelTs.ts index c022983a..18e19a40 100644 --- a/ioBroker/DEV/NSPanelTs.ts +++ b/ioBroker/DEV/NSPanelTs.ts @@ -6177,7 +6177,7 @@ function GenerateChartPage(page: NSPanel.PageChart): NSPanel.Payload[] { } if (Debug) { - log(`Calculated yAxisTicks for ${id} (Min: ${minValue}, Max: ${maxValue}, Tick: ${tick}): ${page.items[0].yAxisTicks}`); + log(`Calculated yAxisTicks for ${id} (Min: ${minValue}, Max: ${maxValue}, Tick: ${tick}): ${yAxisTicks}`); } } else { yAxisTicks = typeof page.items[0].yAxisTicks === 'string'