-
released this
2026-09-26 01:21:25 +00:00 | 1 commits to main since this releaseLLeMbas 1.3.2 - a page that could not save, and said nothing
The model page could not save anything below the reasoning efforts, and had not
been able to since 1.3.0. "Save changes" did nothing at all - not slowly, not
with an error, simply nothing - so the description, the system prompt, every
capability and tool switch, and the whole availability card would silently not
take. The fields above it, including the display name and the efforts
themselves, saved normally, which is what made the page look like it worked.The "Detect from the endpoint" button had stopped detecting too. It submitted
the page as an ordinary save instead, carrying only the top half of the form -
so every field below took its empty default, which would have cleared that
model's description and system prompt and switched the model off with all of
its tools disabled. If you pressed it, check that model's page.The cause was one HTML rule. A form inside another form is not allowed, and
rather than complaining a browser discards the inner tag and lets the closing
tag end the outer form; everything after that point is in no form, and a
button in no form does nothing when pressed. Nothing in the markup reads wrong,
and no test that posts to a route can see it, because such a test sends the
fields itself. So the fix ships with a test that reads every page the way a
browser parses it - including the rule that makes a nested form truncate its
parent rather than nest inside it.Downloads