-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
backlogNot planned for near-term sprintsNot planned for near-term sprints
Description
Problem
The 60-second setInterval poll calls render functions that rebuild the DOM via innerHTML. Any text the user typed in an open form is lost.
Fix
Guard pattern — skip poll refresh when a form is active:
if (activeTab === 'wants' && document.getElementById('want-form')?.style.display !== 'none') return;Apply to all tabs with input forms.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
backlogNot planned for near-term sprintsNot planned for near-term sprints