replace ph-user with ph-head-circuit

This commit is contained in:
nelle 2024-08-09 03:04:13 -06:00
parent 2995c94ab9
commit 0c1fc18e17
14 changed files with 17 additions and 17 deletions

View file

@ -6,7 +6,7 @@
- Control Panel (ph-door -> ph-faders) - Control Panel (ph-door -> ph-faders)
- Antennas (ph-flying-saucer -> ph-cell-tower) - Antennas (ph-flying-saucer -> ph-cell-tower)
- User (ph-user -> ph-head-circuit) - User (ph-head-circuit -> ph-head-circuit)
## jormungandr.20 ## jormungandr.20

View file

@ -40,7 +40,7 @@ async function openSearchFilters(ev) {
await os.popupMenu( await os.popupMenu(
[ [
{ {
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
text: i18n.ts._filters.fromUser, text: i18n.ts._filters.fromUser,
action: () => { action: () => {
os.selectUser().then((user) => { os.selectUser().then((user) => {

View file

@ -136,7 +136,7 @@ const menuDef = $computed(() => [
? [ ? [
{ {
type: "button", type: "button",
icon: "ph-user-plus ph-bold ph-lg", icon: "ph-head-circuit-plus ph-bold ph-lg",
text: i18n.ts.invite, text: i18n.ts.invite,
action: invite, action: invite,
}, },
@ -352,7 +352,7 @@ const lookup = (ev) => {
[ [
{ {
text: i18n.ts.user, text: i18n.ts.user,
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
action: () => { action: () => {
lookupUser(); lookupUser();
}, },

View file

@ -94,7 +94,7 @@ const menuDef = computed(() => [
title: i18n.ts.basicSettings, title: i18n.ts.basicSettings,
items: [ items: [
{ {
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
text: i18n.ts.profile, text: i18n.ts.profile,
to: "/settings/profile", to: "/settings/profile",
active: currentPage?.route.name === "profile", active: currentPage?.route.name === "profile",

View file

@ -301,7 +301,7 @@ const headerTabs = $computed(() => []);
definePageMetadata({ definePageMetadata({
title: i18n.ts.profile, title: i18n.ts.profile,
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
}); });
</script> </script>

View file

@ -32,6 +32,6 @@ const headerTabs = $computed(() => []);
definePageMetadata({ definePageMetadata({
title: i18n.ts.signup, title: i18n.ts.signup,
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
}); });
</script> </script>

View file

@ -222,7 +222,7 @@
inline inline
danger danger
@click="deleteAccount" @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 {{ i18n.ts.deleteAccount }}</FormButton
> >
</div> </div>

View file

@ -65,7 +65,7 @@ definePageMetadata(
computed(() => computed(() =>
user user
? { ? {
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
title: user.name title: user.name
? `${user.name} (@${user.username})` ? `${user.name} (@${user.username})`
: `@${user.username}`, : `@${user.username}`,

View file

@ -65,7 +65,7 @@ definePageMetadata(
computed(() => computed(() =>
user user
? { ? {
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
title: user.name title: user.name
? `${user.name} (@${user.username})` ? `${user.name} (@${user.username})`
: `@${user.username}`, : `@${user.username}`,

View file

@ -88,7 +88,7 @@ const headerTabs = $computed(() =>
{ {
key: "home", key: "home",
title: i18n.ts.overview, 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 ...(($i && $i.id === user.id) || user.publicReactions
? [ ? [
@ -126,7 +126,7 @@ definePageMetadata(
computed(() => computed(() =>
user user
? { ? {
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
title: user.name title: user.name
? `${user.name} (@${user.username})` ? `${user.name} (@${user.username})`
: `@${user.username}`, : `@${user.username}`,

View file

@ -34,6 +34,6 @@ const headerTabs = $computed(() => []);
definePageMetadata({ definePageMetadata({
title: "Verify email", title: "Verify email",
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
}); });
</script> </script>

View file

@ -436,7 +436,7 @@ export function getNoteMenu(props: {
!isAppearAuthor !isAppearAuthor
? { ? {
type: "parent", type: "parent",
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
text: i18n.ts.user, text: i18n.ts.user,
children: getUserMenu(appearNote.user), children: getUserMenu(appearNote.user),
} }

View file

@ -238,7 +238,7 @@ function messagingStart(ev) {
[ [
{ {
text: i18n.ts.messagingWithUser, text: i18n.ts.messagingWithUser,
icon: "ph-user ph-bold ph-lg", icon: "ph-head-circuit ph-bold ph-lg",
action: () => { action: () => {
startUser(); startUser();
}, },
@ -252,7 +252,7 @@ function messagingStart(ev) {
}, },
{ {
text: i18n.ts.manageGroups, text: i18n.ts.manageGroups,
icon: "ph-user-circle-gear ph-bold ph-lg", icon: "ph-head-circuit-circle-gear ph-bold ph-lg",
action: () => { action: () => {
mainRouter.push("/my/groups"); mainRouter.push("/my/groups");
}, },

View file

@ -1,7 +1,7 @@
<template> <template>
<MkContainer :show-header="widgetProps.showHeader" class="mkw-userList"> <MkContainer :show-header="widgetProps.showHeader" class="mkw-userList">
<template #header <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 {{ list ? list.name : i18n.ts._widgets.userList }}</template
> >
<template #func="{ buttonStyleClass }" <template #func="{ buttonStyleClass }"