TSK-1069. Displaying a Mention, as well as a Comment. Fixed MessageViewer. (#2915)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov
2023-04-06 23:34:14 +07:00
committed by GitHub
parent 210d3eebc6
commit 33db59a5e2
9 changed files with 89 additions and 72 deletions
@@ -31,23 +31,23 @@
</script>
{#if value}
<div class="flex-between">
<div class="flex-presenter overflow-label mr-2">
<div class="flex-between clear-mins">
<div class="flex-presenter inline-presenter mr-2">
{#if currentProject}
<Icon icon={currentProject.icon ?? tracker.icon.Home} size="small" />
<div class="ml-1 mr-1 font-semi-bold">
{currentProject.name}
<div class="icon">
<Icon icon={currentProject.icon ?? tracker.icon.Home} size="small" />
</div>
<span class="label no-underline nowrap">
{currentProject.name}
</span>
{/if}
<span class="overflow-label">
{title}
<span class="overflow-label ml-2">
<span class="content-accent-color">{title}</span>
{value.title}
</span>
</div>
<div>
{#if status}
<IssueStatusIcon value={status} size="small" />
{/if}
</div>
{#if status}
<IssueStatusIcon value={status} size="small" />
{/if}
</div>
{/if}