Duplicate-key Dioxus panic in productivity islands #101
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_archipelagos#101
Loading…
Add table
Add a link
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?
When a story/task/project/milestone has duplicate strings in a user-editable list (tags, acceptance criteria, deliverables), the UI panics and freezes with:
The affected lists use each item value as its Dioxus
key, so repeats collide.Repro: create a story with acceptance criteria
["a", "b", "a"], open its detail, click Delete → WASM unreachable trap, whole island freezes.Affected:
stories/views/story_detail_view.rs— acceptance criteriasprints/views/milestone_detail_view.rs— deliverablestasks/views/task_detail_view.rs,tasks/views/task_item.rs— tagsprojects/views/project_detail_view.rs— tagsFix: key by enumerate index instead of value.
zaelgohary referenced this issue2026-04-21 21:57:55 +00:00