mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-09 08:03:50 +00:00
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>
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