1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-09 07:46:48 +01:00

fix: hide 'unknown client'

This commit is contained in:
Daniel Roe 2022-11-25 23:42:09 +00:00
parent 1ad3fcf20c
commit b36a803eef
No known key found for this signature in database
GPG key ID: 22D5008E4F5D9B55

View file

@ -30,7 +30,7 @@ const date = useFormattedDateTime(status.createdAt)
</StatusSpoiler>
<div>
<span op50 text-sm>
{{ date }} · {{ status.application?.name || 'Unknown client' }}
{{ date }} {{ status.application?.name ? `· ${status.application?.name}` : '' }}
</span>
</div>
<StatusActions :status="status" border="t base" pt-2 />