Files
windmill/frontend
Ruben FiszelandClaude Opus 4.8 4a334fda68 restore flow graph pane height in editor (#9584)
The flow editor graph pane collapsed to height 0 because FlowBuilder's
root used `flex flex-col flex-1 h-screen`. The `flex-1` (flex-basis: 0%)
overrides `h-screen` for main-axis sizing, so the div's height came from
flex-grow (indefinite) rather than the 100vh anchor. Every descendant
down to the graph relies on `height: 100%`, which only resolves against a
definite parent height, so the whole chain collapsed.

This was inert until the AIChat layout unification wrapped FlowBuilder in
a `flex flex-col` column, which activated `flex-1`. Drop `flex-1` to match
the working ScriptBuilder pattern (`flex flex-col h-screen`) used in the
same AiChatLayout, so `h-screen` stays the definite height anchor.

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-15 15:55:21 +02:00
..
2026-01-22 16:20:01 +00:00
2025-12-23 18:19:30 +00:00
2026-02-19 09:33:33 +00:00
2026-03-05 18:11:40 +01:00
2026-01-22 16:20:01 +00:00
2026-03-18 11:38:22 +00:00
2026-02-19 09:33:33 +00:00

Windmill frontend

The Windmill frontend written in Svelte 5 + Tailwind CSS

The frontend is under AGPL, see the LICENSE file at the root of this repo