forked from Mirrors/elk
fix: hide 'unknown client'
This commit is contained in:
parent
1ad3fcf20c
commit
b36a803eef
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ const date = useFormattedDateTime(status.createdAt)
|
||||||
</StatusSpoiler>
|
</StatusSpoiler>
|
||||||
<div>
|
<div>
|
||||||
<span op50 text-sm>
|
<span op50 text-sm>
|
||||||
{{ date }} · {{ status.application?.name || 'Unknown client' }}
|
{{ date }} {{ status.application?.name ? `· ${status.application?.name}` : '' }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<StatusActions :status="status" border="t base" pt-2 />
|
<StatusActions :status="status" border="t base" pt-2 />
|
||||||
|
|
Loading…
Reference in a new issue