fix(tracker): allow clearing issue assignees#10887
Open
ignatremizov wants to merge 1 commit into
Open
Conversation
Add an explicit no-assignee path to the issue assignee picker so users can remove an assignee without the popup fallback assigning the current user again. Changes: - Add a selectable No assignee row to the contact assignee popup and keep it available when deselection is allowed. - Preserve undefined as the cancel/no-selection result while dispatching null for an intentional clear-assignee action. - Translate null assignee updates in the tracker assignee editor into a $unset operation so the issue assignee field is removed from persistence. - Keep normal user selection behavior unchanged for person rows and multi-issue assignee updates. Validation: - git diff --check Signed-off-by: Ignat Remizov <ignat@ignatremizov.com>
|
Connected to Huly®: UBERF-16477 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
undefined) and an intentional clear-assignee action (null).$unsetupdate so persisted issue documents remove the assignee field.Testing
git diff --check upstream/develop...HEADnode common/scripts/install-run-rush.js build --to @hcengineering/presentation --to @hcengineering/contact-resources --to @hcengineering/tracker-resourcesNotes
nullonly as the popup event detail for a user-requested assignee clear;undefinedremains the cancel/no-selection result.nullto$unsetfor persistence, while selected person refs continue to use normalassigneeupdates.