This commit is contained in:
ThatOneCalculator 2022-11-17 21:01:05 -08:00
parent 2867e814b2
commit 693de2c063
3 changed files with 4 additions and 3 deletions

View file

@ -159,7 +159,7 @@ proxyAccount: "Proxy account"
proxyAccountDescription: "A proxy account is an account that acts as a remote follower for users under certain conditions. For example, when a user adds a remote user to the list, the remote user's activity will not be delivered to the instance if no local user is following that user, so the proxy account will follow instead."
host: "Host"
selectUser: "Select a user"
recipient: "Recipient"
recipient: "Recipient(s)"
annotation: "Comments"
federation: "Federation"
instances: "Instances"

View file

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "12.119.0-calc.14.8",
"version": "12.119.0-calc.14.9",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -30,13 +30,13 @@
<XNoteSimple v-if="renote" class="preview" :note="renote"/>
<div v-if="quoteId" class="with-quote"><i class="ph-quotes-bold ph-lg"></i> {{ i18n.ts.quoteAttached }}<button @click="quoteId = null"><i class="ph-x-bold ph-lg"></i></button></div>
<div v-if="visibility === 'specified'" class="to-specified">
<button class="_button" @click="addVisibleUser"><i class="ph-plus-bold ph-md ph-fw ph-lg" style="transform: translateX(420px)"></i></button>
<span style="margin-right: 8px;">{{ i18n.ts.recipient }}</span>
<div class="visibleUsers">
<span v-for="u in visibleUsers" :key="u.id">
<MkAcct :user="u"/>
<button class="_button" @click="removeVisibleUser(u)"><i class="ph-x-bold ph-lg"></i></button>
</span>
<button class="_buttonPrimary" @click="addVisibleUser"><i class="ph-plus-bold ph-lg ph-fw ph-lg"></i></button>
</div>
</div>
<MkInfo v-if="hasNotSpecifiedMentions" warn class="hasNotSpecifiedMentions">{{ i18n.ts.notSpecifiedMentionWarning }} - <button class="_textButton" @click="addMissingMention()">{{ i18n.ts.add }}</button></MkInfo>
@ -832,6 +832,7 @@ onMounted(() => {
padding: 6px 24px;
margin-bottom: 8px;
overflow: auto;
line-height: 2rem;
> .visibleUsers {
display: inline;