Fix: Rechtes Panel frei zusammenschiebbar (minmax 80px statt gespeichertem Wert)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
e16a9c720a
commit
8a6ed764c5
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@
|
|||
// Letztes Panel füllt den verfügbaren Platz
|
||||
const cols = panelWidths.map((w, i) => {
|
||||
if (i < panelWidths.length - 1) return `${w}px 8px`;
|
||||
return `minmax(${w}px, 1fr)`;
|
||||
return `minmax(80px, 1fr)`;
|
||||
}).join(' ');
|
||||
gridEl.style.gridTemplateColumns = cols;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue