Chart canvas aeinstellen um alles zu zeigen für Schleifenmessung

This commit is contained in:
ISA
2025-02-14 10:50:31 +01:00
parent d0c5c1c341
commit 919c0b1d4a
2 changed files with 6 additions and 2 deletions

View File

@@ -102,7 +102,11 @@ const LoopMeasurementChart: React.FC = () => {
};
}, [chartData]);
return <canvas ref={chartRef} style={{ width: "100%", height: "20rem" }} />;
return (
<div style={{ position: "relative", width: "100%", height: "400px" }}>
<canvas ref={chartRef} />
</div>
);
};
export default LoopMeasurementChart;

View File

@@ -6,5 +6,5 @@
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
*/
const webVersion = "1.6.43";
const webVersion = "1.6.44";
export default webVersion;