fix: change local icon to users to fit the style of the existing tab

This commit is contained in:
Amelia Yukii 2023-09-19 02:14:37 +00:00 committed by Kainoa Kanter
parent 1914e568bb
commit 11bf258b8e
5 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@
>{{ maxTextLength - textLength }}</span
>
<span v-if="localOnly" class="local-only"
><i class="ph-hand-fist ph-bold ph-lg"></i
><i class="ph-users ph-bold ph-lg"></i
></span>
<button
ref="visibilityButton"

View File

@ -195,7 +195,7 @@ const renote = (viaKeyboard = false, ev?: MouseEvent) => {
if (canRenote.value) {
buttonActions.push({
text: `${i18n.ts.renote} (${i18n.ts.local})`,
icon: "ph-hand-fist ph-bold ph-lg",
icon: "ph-users ph-bold ph-lg",
danger: false,
action: () => {
vibrate([30, 30, 60]);

View File

@ -19,7 +19,7 @@
<span v-if="note.localOnly" :class="$style.localOnly"
><i
v-tooltip="i18n.ts._visibility.localOnly"
class="ph-hand-fist ph-bold ph-lg"
class="ph-users ph-bold ph-lg"
></i
></span>
</template>

View File

@ -97,7 +97,7 @@
@click="localOnly = !localOnly"
>
<div :class="$style.icon">
<i class="ph-hand-fist ph-bold ph-lg"></i>
<i class="ph-users ph-bold ph-lg"></i>
</div>
<div :class="$style.body">
<span :class="$style.itemTitle">{{

View File

@ -431,7 +431,7 @@ const headerActions = computed(() => [
const headerTabs = computed(() => [
{
key: "local",
icon: "ph-hand-fist ph-bold ph-lg",
icon: "ph-users ph-bold ph-lg",
title: i18n.ts.local,
},
{