You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While looking at the Manifold instance pico engine, I noticed a newly created Thing with a name that is 46 characters long.
Sure enough, there is no limit imposed in the UX (generated here; consumed here) nor when passed to the Manifold pico to create a new pico (here), nor in the ruleset that does so (here).
While looking at the Manifold instance pico engine, I noticed a newly created Thing with a name that is 46 characters long.
Sure enough, there is no limit imposed in the UX (generated here; consumed here) nor when passed to the Manifold pico to create a new pico (here), nor in the ruleset that does so (here).
Code snippets shown here for convenience.
Front end:
and its onChange handler:
which checks for a missing name, but nothing about its length.
Passing the event through to the Manifold pico:
Back end, at the Manifold pico:
which again checks for a non-empty name (but would accept a blank one), but does no length sanity checking.
Note that we inherit this problem from Wrangler, which also accepts anything as a pico name.
The text was updated successfully, but these errors were encountered: