fix(ui): fix chartjs redraw loop

Set a fixed height and position to the action buttons to prevent an infinite redraw loop from Chart.js.
This commit is contained in:
Marco Gallegos
2025-08-13 07:57:26 -06:00
parent 60d02dbca1
commit 96ffed6674

View File

@@ -296,6 +296,9 @@ button.action-btn {
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
/* Fijar altura para evitar bucle infinito de redibujo de Chart.js */
position: relative;
height: 300px;
}