mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-21 09:27:31 -07:00
replace ph-user with ph-head-circuit
This commit is contained in:
parent
2995c94ab9
commit
0c1fc18e17
14 changed files with 17 additions and 17 deletions
|
@ -6,7 +6,7 @@
|
|||
|
||||
- Control Panel (ph-door -> ph-faders)
|
||||
- Antennas (ph-flying-saucer -> ph-cell-tower)
|
||||
- User (ph-user -> ph-head-circuit)
|
||||
- User (ph-head-circuit -> ph-head-circuit)
|
||||
|
||||
## jormungandr.20
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ async function openSearchFilters(ev) {
|
|||
await os.popupMenu(
|
||||
[
|
||||
{
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
text: i18n.ts._filters.fromUser,
|
||||
action: () => {
|
||||
os.selectUser().then((user) => {
|
||||
|
|
|
@ -136,7 +136,7 @@ const menuDef = $computed(() => [
|
|||
? [
|
||||
{
|
||||
type: "button",
|
||||
icon: "ph-user-plus ph-bold ph-lg",
|
||||
icon: "ph-head-circuit-plus ph-bold ph-lg",
|
||||
text: i18n.ts.invite,
|
||||
action: invite,
|
||||
},
|
||||
|
@ -352,7 +352,7 @@ const lookup = (ev) => {
|
|||
[
|
||||
{
|
||||
text: i18n.ts.user,
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
action: () => {
|
||||
lookupUser();
|
||||
},
|
||||
|
|
|
@ -94,7 +94,7 @@ const menuDef = computed(() => [
|
|||
title: i18n.ts.basicSettings,
|
||||
items: [
|
||||
{
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
text: i18n.ts.profile,
|
||||
to: "/settings/profile",
|
||||
active: currentPage?.route.name === "profile",
|
||||
|
|
|
@ -301,7 +301,7 @@ const headerTabs = $computed(() => []);
|
|||
|
||||
definePageMetadata({
|
||||
title: i18n.ts.profile,
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
});
|
||||
</script>
|
||||
|
||||
|
|
|
@ -32,6 +32,6 @@ const headerTabs = $computed(() => []);
|
|||
|
||||
definePageMetadata({
|
||||
title: i18n.ts.signup,
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -222,7 +222,7 @@
|
|||
inline
|
||||
danger
|
||||
@click="deleteAccount"
|
||||
><i class="ph-user-minus ph-bold ph-lg"></i>
|
||||
><i class="ph-head-circuit-minus ph-bold ph-lg"></i>
|
||||
{{ i18n.ts.deleteAccount }}</FormButton
|
||||
>
|
||||
</div>
|
||||
|
|
|
@ -65,7 +65,7 @@ definePageMetadata(
|
|||
computed(() =>
|
||||
user
|
||||
? {
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
title: user.name
|
||||
? `${user.name} (@${user.username})`
|
||||
: `@${user.username}`,
|
||||
|
|
|
@ -65,7 +65,7 @@ definePageMetadata(
|
|||
computed(() =>
|
||||
user
|
||||
? {
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
title: user.name
|
||||
? `${user.name} (@${user.username})`
|
||||
: `@${user.username}`,
|
||||
|
|
|
@ -88,7 +88,7 @@ const headerTabs = $computed(() =>
|
|||
{
|
||||
key: "home",
|
||||
title: i18n.ts.overview,
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
},
|
||||
...(($i && $i.id === user.id) || user.publicReactions
|
||||
? [
|
||||
|
@ -126,7 +126,7 @@ definePageMetadata(
|
|||
computed(() =>
|
||||
user
|
||||
? {
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
title: user.name
|
||||
? `${user.name} (@${user.username})`
|
||||
: `@${user.username}`,
|
||||
|
|
|
@ -34,6 +34,6 @@ const headerTabs = $computed(() => []);
|
|||
|
||||
definePageMetadata({
|
||||
title: "Verify email",
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
});
|
||||
</script>
|
||||
|
|
|
@ -436,7 +436,7 @@ export function getNoteMenu(props: {
|
|||
!isAppearAuthor
|
||||
? {
|
||||
type: "parent",
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
text: i18n.ts.user,
|
||||
children: getUserMenu(appearNote.user),
|
||||
}
|
||||
|
|
|
@ -238,7 +238,7 @@ function messagingStart(ev) {
|
|||
[
|
||||
{
|
||||
text: i18n.ts.messagingWithUser,
|
||||
icon: "ph-user ph-bold ph-lg",
|
||||
icon: "ph-head-circuit ph-bold ph-lg",
|
||||
action: () => {
|
||||
startUser();
|
||||
},
|
||||
|
@ -252,7 +252,7 @@ function messagingStart(ev) {
|
|||
},
|
||||
{
|
||||
text: i18n.ts.manageGroups,
|
||||
icon: "ph-user-circle-gear ph-bold ph-lg",
|
||||
icon: "ph-head-circuit-circle-gear ph-bold ph-lg",
|
||||
action: () => {
|
||||
mainRouter.push("/my/groups");
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<MkContainer :show-header="widgetProps.showHeader" class="mkw-userList">
|
||||
<template #header
|
||||
><i class="ph-user-list ph-bold ph-lg"></i>
|
||||
><i class="ph-head-circuit-list ph-bold ph-lg"></i>
|
||||
{{ list ? list.name : i18n.ts._widgets.userList }}</template
|
||||
>
|
||||
<template #func="{ buttonStyleClass }"
|
||||
|
|
Loading…
Reference in a new issue