#225 Fix local only icon

This commit is contained in:
AntoineÐ 2023-11-06 14:36:16 +01:00 committed by Laura Hausmann
parent 2baa787b72
commit 9b36a544d8
Signed by: zotan
GPG key ID: D044E84C5BE01605
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

@ -194,7 +194,7 @@ const renote = (viaKeyboard = false, ev?: MouseEvent) => {
if (canRenote) {
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: () => {
os.api(

View file

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

View file

@ -100,7 +100,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

@ -428,7 +428,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,
},
{