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)
- Antennas (ph-flying-saucer -> ph-cell-tower)
- User (ph-user -> ph-head-circuit)
- User (ph-head-circuit -> ph-head-circuit)
## jormungandr.20

View file

@ -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) => {

View file

@ -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();
},

View file

@ -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",

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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}`,

View file

@ -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}`,

View file

@ -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}`,

View file

@ -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>

View file

@ -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),
}

View file

@ -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");
},

View file

@ -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 }"