From 9f26dab1f86dc47d81045319a0f348c541395215 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tumanov Date: Fri, 16 Jun 2023 10:07:58 +0500 Subject: [PATCH] UBER-488: update selected priority on issue switch (#3436) Signed-off-by: Vyacheslav Tumanov --- .../src/components/issues/PriorityEditor.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tracker-resources/src/components/issues/PriorityEditor.svelte b/plugins/tracker-resources/src/components/issues/PriorityEditor.svelte index 775f51542b..6e739a7757 100644 --- a/plugins/tracker-resources/src/components/issues/PriorityEditor.svelte +++ b/plugins/tracker-resources/src/components/issues/PriorityEditor.svelte @@ -42,7 +42,7 @@ const client = getClient() const dispatch = createEventDispatcher() - let selectedPriority: IssuePriority | undefined = value.priority + $: selectedPriority = value.priority const handlePriorityEditorOpened = (event: MouseEvent) => { event.stopPropagation()