chore(client): tweak client
This commit is contained in:
parent
de43b47ca8
commit
c27d9e11b4
|
@ -854,6 +854,7 @@ noEmailServerWarning: "メールサーバーの設定がされていません。
|
||||||
thereIsUnresolvedAbuseReportWarning: "未対応の通報があります。"
|
thereIsUnresolvedAbuseReportWarning: "未対応の通報があります。"
|
||||||
recommended: "推奨"
|
recommended: "推奨"
|
||||||
check: "チェック"
|
check: "チェック"
|
||||||
|
isSystemAccount: "システムにより自動で作成・管理されているアカウントです。"
|
||||||
|
|
||||||
_emailUnavailable:
|
_emailUnavailable:
|
||||||
used: "既に使用されています"
|
used: "既に使用されています"
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
<template #value><span class="_monospace"><MkTime :time="file.createdAt" mode="detail" style="display: block;"/></span></template>
|
<template #value><span class="_monospace"><MkTime :time="file.createdAt" mode="detail" style="display: block;"/></span></template>
|
||||||
</MkKeyValue>
|
</MkKeyValue>
|
||||||
</div>
|
</div>
|
||||||
<MkA class="user" :to="`/user-info/${file.user.id}`">
|
<MkA v-if="file.user" class="user" :to="`/user-info/${file.user.id}`">
|
||||||
<MkUserCardMini :user="file.user"/>
|
<MkUserCardMini :user="file.user"/>
|
||||||
</MkA>
|
</MkA>
|
||||||
<div class="_formBlock">
|
<div class="_formBlock">
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<MkInfo v-if="user.username.includes('.')" class="_formBlock">{{ i18n.ts.isSystemAccount }}</MkInfo>
|
||||||
|
|
||||||
<div v-if="user.url" class="_formLinksGrid _formBlock">
|
<div v-if="user.url" class="_formLinksGrid _formBlock">
|
||||||
<FormLink :to="userPage(user)">Profile</FormLink>
|
<FormLink :to="userPage(user)">Profile</FormLink>
|
||||||
<FormLink :to="user.url" :external="true">Profile (remote)</FormLink>
|
<FormLink :to="user.url" :external="true">Profile (remote)</FormLink>
|
||||||
|
|
Loading…
Reference in New Issue