bug: wizard step 7 loses search titles — nested key extraction reads wrong level #125
Labels
No labels
a11y
backlog
beta-feedback
bug
enhancement
feature-request
frontend
needs-triage
question
vue
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Circuit-Forge/peregrine#125
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Wizard sends
{ search: { titles: [...], locations: [...], remote_only: false } }as the step 7 payload, but thewizard_save_stephandler readsdata.get("titles", [])from the top-leveldatadict instead ofdata["search"]["titles"]. Result: titles and locations are always saved as empty arrays regardless of what the user entered.Fix
Read from the nested
searchkey with a fallback for direct API callers:Impact
Every user who sets job titles during the wizard will see an empty Search Prefs page in Settings.