fix(session-ui): deselect review line on draft cancel (#34585)
Co-authored-by: 𝓛𝓲𝓽𝓽𝓵𝓮 𝓕𝓻𝓪𝓷𝓴 <little-frank@opencord.local>
This commit is contained in:
co-authored by
𝓛𝓲𝓽𝓽𝓵𝓮 𝓕𝓻𝓪𝓷𝓴
parent
e34822db6b
commit
90f0576222
@@ -408,7 +408,10 @@ export function createLineCommentController<T extends LineCommentShape>(
|
|||||||
selection: formatSelectedLineLabel(range, i18n.t),
|
selection: formatSelectedLineLabel(range, i18n.t),
|
||||||
mention: props.mention,
|
mention: props.mention,
|
||||||
onInput: note.setDraft,
|
onInput: note.setDraft,
|
||||||
onCancel: note.cancelDraft,
|
onCancel: () => {
|
||||||
|
note.cancelDraft()
|
||||||
|
note.select(null)
|
||||||
|
},
|
||||||
onSubmit: (comment) => {
|
onSubmit: (comment) => {
|
||||||
props.onSubmit({ comment, selection: cloneSelectedLineRange(range) })
|
props.onSubmit({ comment, selection: cloneSelectedLineRange(range) })
|
||||||
note.cancelDraft()
|
note.cancelDraft()
|
||||||
|
|||||||
Reference in New Issue
Block a user