mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 01:19:57 +00:00
refactor: use escaped middot
This commit is contained in:
parent
f2a1cdaefe
commit
1ba5cc4072
2 changed files with 4 additions and 4 deletions
|
@ -48,7 +48,7 @@ const buildTimeAgo = useTimeAgo(buildTime, timeAgoOptions)
|
|||
<i18n-t keypath="nav_footer.built_at">
|
||||
<time :datetime="buildTime" :title="$d(buildTimeDate, 'long')">{{ buildTimeAgo }}</time>
|
||||
</i18n-t>
|
||||
·
|
||||
·
|
||||
<NuxtLink
|
||||
v-if="buildCommit"
|
||||
external
|
||||
|
@ -58,7 +58,7 @@ const buildTimeAgo = useTimeAgo(buildTime, timeAgoOptions)
|
|||
>
|
||||
{{ buildCommit.slice(0, 7) }}
|
||||
</NuxtLink>
|
||||
· <a href="https://github.com/elk-zone/elk" target="_blank">GitHub</a>
|
||||
· <a href="https://github.com/elk-zone/elk" target="_blank">GitHub</a>
|
||||
</div>
|
||||
</footer>
|
||||
</template>
|
||||
|
|
|
@ -53,12 +53,12 @@ const visibility = $computed(() => STATUS_VISIBILITIES.find(v => v.value === sta
|
|||
<span ml1 font-bold cursor-pointer>{{ $t('state.edited') }}</span>
|
||||
</StatusEditIndicator>
|
||||
</div>
|
||||
<div>·</div>
|
||||
<div>·</div>
|
||||
<CommonTooltip :content="$t(`visibility.${visibility.value}`)" placement="bottom">
|
||||
<div :class="visibility.icon" />
|
||||
</CommonTooltip>
|
||||
<div v-if="status.application?.name">
|
||||
· {{ status.application?.name }}
|
||||
· {{ status.application?.name }}
|
||||
</div>
|
||||
</div>
|
||||
<StatusActions :status="status" details :command="command" border="t base" pt-2 />
|
||||
|
|
Loading…
Reference in a new issue