Fix activity view for "No Priority" option (#1641)

This commit is contained in:
Sergei Ogorelkov 2022-05-05 13:23:10 +07:00 committed by GitHub
parent 5d84e38c79
commit 1b62b6223c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@
export let value: IssuePriority | undefined
</script>
{#if value}
{#if value !== undefined}
<span class="overflow-label">
<Label label={issuePriorities[value].label} />
</span>