Affected Version
2026.2
Affected capability
Documents
Steps to reproduce
- Create an areabrick whose
needsReload() returns true.
- Open a document with an areablock (without
reload: true on the editable) in Studio UI edit mode.
- Add the brick to the areablock.
Actual Behavior
The brick is inserted without a page reload; needsReload() has no effect. The needsReload flag is passed from the backend (EditableHandler) and declared on the AreaType interface in areablock-editable.tsx, but is never read anywhere in the areablock code. Reload is driven solely by the areablock-level config.reload (isReloadMode = Boolean(config?.reload)).
Expected Behavior
Adding a brick whose needsReload() returns true reloads the affected area/document, matching the legacy AdminBundle edit mode behavior.
Affected Version
2026.2
Affected capability
Documents
Steps to reproduce
needsReload()returnstrue.reload: trueon the editable) in Studio UI edit mode.Actual Behavior
The brick is inserted without a page reload;
needsReload()has no effect. TheneedsReloadflag is passed from the backend (EditableHandler) and declared on theAreaTypeinterface inareablock-editable.tsx, but is never read anywhere in the areablock code. Reload is driven solely by the areablock-levelconfig.reload(isReloadMode=Boolean(config?.reload)).Expected Behavior
Adding a brick whose
needsReload()returnstruereloads the affected area/document, matching the legacy AdminBundle edit mode behavior.