docs(console): note single-form assumption near activeBinding

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
mwiegand 2026-05-17 19:10:01 +02:00
parent 97a4e51f8a
commit 2fcf9c3778
No known key found for this signature in database

View file

@ -18,6 +18,9 @@ const MAX_RENDERED = 8;
// Module-scoped state. // Module-scoped state.
let vocabPromise = null; let vocabPromise = null;
let vocab = null; let vocab = null;
// activeBinding assumes a single dropdown open at a time. Today the
// project has one console form per page; multi-form support would
// need per-form open-state tracking (e.g. a Set) here.
let activeBinding = null; let activeBinding = null;
function loadVocab() { function loadVocab() {