Merge branch 'develop' into 'develop'
fix: change local icon to users to fit the style of the existing tab Co-authored-by: Amelia Yukii <admin@transfem.org> See merge request firefish/firefish!10597
This commit is contained in:
commit
393a3a3c1d
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"
|
||||||
|
|
|
@ -195,7 +195,7 @@ const renote = (viaKeyboard = false, ev?: MouseEvent) => {
|
||||||
if (canRenote.value) {
|
if (canRenote.value) {
|
||||||
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: () => {
|
||||||
vibrate([30, 30, 60]);
|
vibrate([30, 30, 60]);
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
<span v-if="note.localOnly" :class="$style.localOnly"
|
<span v-if="note.localOnly" :class="$style.localOnly"
|
||||||
><i
|
><i
|
||||||
v-tooltip="i18n.ts._visibility.localOnly"
|
v-tooltip="i18n.ts._visibility.localOnly"
|
||||||
class="ph-hand-fist ph-bold ph-lg"
|
class="ph-users ph-bold ph-lg"
|
||||||
></i
|
></i
|
||||||
></span>
|
></span>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -97,7 +97,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">{{
|
||||||
|
|
|
@ -431,7 +431,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