Not the whole object; only correct prop

master
Martin Zwigl 2025-03-19 23:18:17 +01:00
parent c081079073
commit a34ef0c536
2 changed files with 3 additions and 2 deletions

View File

@ -98,7 +98,8 @@ function getChart(period) {
tknChrtData = apiData.map(innerArray => innerArray[1]); tknChrtData = apiData.map(innerArray => innerArray[1]);
// logFile.write("Chart data:" + JSON.stringify(tknChrtData)); // logFile.write("Chart data:" + JSON.stringify(tknChrtData));
currLoadMsg = ""; currLoadMsg = "";
gridYValue = ciLib.calculateOptimalYAxisSpacing(tknChrtData); const oSpcOjb = ciLib.calculateOptimalYAxisSpacing(tknChrtData);
gridYValue = oSpcOjb.roundedInterval;
// //
g.clearRect(layout.tknGraph.x, layout.tknGraph.y, layout.tknGraph.w, layout.tknGraph.h); g.clearRect(layout.tknGraph.x, layout.tknGraph.y, layout.tknGraph.w, layout.tknGraph.h);
layout.forgetLazyState(); // Force a full re-render layout.forgetLazyState(); // Force a full re-render

View File

@ -1,7 +1,7 @@
{ "id": "coin_info", { "id": "coin_info",
"name": "Crypto-Coins Info", "name": "Crypto-Coins Info",
"shortName":"Coins Info", "shortName":"Coins Info",
"version": "0.06.54", "version": "0.06.55",
"description": "Crypto-Coins Infos with the help of the Binance API", "description": "Crypto-Coins Infos with the help of the Binance API",
"icon": "app.png", "icon": "app.png",
"tags": "clkinfo", "tags": "clkinfo",