mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 01:47:39 -07:00
#225 Fix local only icon
This commit is contained in:
parent
2baa787b72
commit
9b36a544d8
5 changed files with 5 additions and 5 deletions
|
@ -29,7 +29,7 @@
|
||||||
>{{ maxTextLength - textLength }}</span
|
>{{ maxTextLength - textLength }}</span
|
||||||
>
|
>
|
||||||
<span v-if="localOnly" class="local-only"
|
<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>
|
></span>
|
||||||
<button
|
<button
|
||||||
ref="visibilityButton"
|
ref="visibilityButton"
|
||||||
|
|
|
@ -194,7 +194,7 @@ const renote = (viaKeyboard = false, ev?: MouseEvent) => {
|
||||||
if (canRenote) {
|
if (canRenote) {
|
||||||
buttonActions.push({
|
buttonActions.push({
|
||||||
text: `${i18n.ts.renote} (${i18n.ts.local})`,
|
text: `${i18n.ts.renote} (${i18n.ts.local})`,
|
||||||
icon: "ph-hand-fist ph-bold ph-lg",
|
icon: "ph-users ph-bold ph-lg",
|
||||||
danger: false,
|
danger: false,
|
||||||
action: () => {
|
action: () => {
|
||||||
os.api(
|
os.api(
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
</span>
|
</span>
|
||||||
<span v-if="note.localOnly" :class="$style.localOnly"
|
<span v-if="note.localOnly" :class="$style.localOnly"
|
||||||
><i
|
><i
|
||||||
class="ph-hand-fist ph-bold ph-lg"
|
class="ph-users ph-bold ph-lg"
|
||||||
v-tooltip="i18n.ts._visibility.localOnly"
|
v-tooltip="i18n.ts._visibility.localOnly"
|
||||||
></i
|
></i
|
||||||
></span>
|
></span>
|
||||||
|
|
|
@ -100,7 +100,7 @@
|
||||||
@click="localOnly = !localOnly"
|
@click="localOnly = !localOnly"
|
||||||
>
|
>
|
||||||
<div :class="$style.icon">
|
<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>
|
||||||
<div :class="$style.body">
|
<div :class="$style.body">
|
||||||
<span :class="$style.itemTitle">{{
|
<span :class="$style.itemTitle">{{
|
||||||
|
|
|
@ -428,7 +428,7 @@ const headerActions = $computed(() => [
|
||||||
const headerTabs = $computed(() => [
|
const headerTabs = $computed(() => [
|
||||||
{
|
{
|
||||||
key: "local",
|
key: "local",
|
||||||
icon: "ph-hand-fist ph-bold ph-lg",
|
icon: "ph-users ph-bold ph-lg",
|
||||||
title: i18n.ts.local,
|
title: i18n.ts.local,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue