diff --git a/packages/frontend/src/pages/admin/users.vue b/packages/frontend/src/pages/admin/users.vue
index 0561eb3d8d..8c29542e52 100644
--- a/packages/frontend/src/pages/admin/users.vue
+++ b/packages/frontend/src/pages/admin/users.vue
@@ -140,7 +140,7 @@ const headerTabs = computed(() => []);
definePageMetadata(() => ({
title: i18n.ts.users,
- icon: 'ph-users ph-bold ph-lg',
+ icon: 'ti ti-users',
}));
diff --git a/packages/frontend/src/pages/channel.vue b/packages/frontend/src/pages/channel.vue
index 5ec26d85b5..16498e3628 100644
--- a/packages/frontend/src/pages/channel.vue
+++ b/packages/frontend/src/pages/channel.vue
@@ -15,7 +15,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-
{{ channel.usersCount }}
+
{{ channel.usersCount }}
{{ channel.notesCount }}
{{ i18n.ts.sensitive }}
diff --git a/packages/frontend/src/pages/explore.vue b/packages/frontend/src/pages/explore.vue
index c599a290f7..62f1fc20e0 100644
--- a/packages/frontend/src/pages/explore.vue
+++ b/packages/frontend/src/pages/explore.vue
@@ -52,7 +52,7 @@ const headerTabs = computed(() => [{
title: i18n.ts.featured,
}, {
key: 'users',
- icon: 'ph-users ph-bold ph-lg',
+ icon: 'ti ti-users',
title: i18n.ts.users,
}, {
key: 'roles',
diff --git a/packages/frontend/src/pages/instance-info.vue b/packages/frontend/src/pages/instance-info.vue
index 913d704056..6ffec43365 100644
--- a/packages/frontend/src/pages/instance-info.vue
+++ b/packages/frontend/src/pages/instance-info.vue
@@ -278,7 +278,7 @@ const headerTabs = computed(() => [{
}, {
key: 'users',
title: i18n.ts.users,
- icon: 'ph-users ph-bold ph-lg',
+ icon: 'ti ti-users',
}, {
key: 'raw',
title: 'Raw',
diff --git a/packages/frontend/src/pages/role.vue b/packages/frontend/src/pages/role.vue
index 9c497583b5..3a4af9d964 100644
--- a/packages/frontend/src/pages/role.vue
+++ b/packages/frontend/src/pages/role.vue
@@ -85,7 +85,7 @@ const users = computed(() => ({
const headerTabs = computed(() => [{
key: 'users',
- icon: 'ph-users ph-bold ph-lg',
+ icon: 'ti ti-users',
title: i18n.ts.users,
}, {
key: 'timeline',
diff --git a/packages/frontend/src/pages/search.vue b/packages/frontend/src/pages/search.vue
index 12a1f7121a..12dfa03671 100644
--- a/packages/frontend/src/pages/search.vue
+++ b/packages/frontend/src/pages/search.vue
@@ -49,7 +49,7 @@ const headerTabs = computed(() => [{
}, {
key: 'user',
title: i18n.ts.users,
- icon: 'ph-users ph-bold ph-lg',
+ icon: 'ti ti-users',
}]);
definePageMetadata(() => ({
diff --git a/packages/frontend/src/pages/settings/accounts.vue b/packages/frontend/src/pages/settings/accounts.vue
index 3c0e359a06..c6a4398d4a 100644
--- a/packages/frontend/src/pages/settings/accounts.vue
+++ b/packages/frontend/src/pages/settings/accounts.vue
@@ -108,7 +108,7 @@ const headerTabs = computed(() => []);
definePageMetadata(() => ({
title: i18n.ts.accounts,
- icon: 'ph-users ph-bold ph-lg',
+ icon: 'ti ti-users',
}));
diff --git a/packages/frontend/src/pages/settings/import-export.vue b/packages/frontend/src/pages/settings/import-export.vue
index 041870d41b..dd86c5a647 100644
--- a/packages/frontend/src/pages/settings/import-export.vue
+++ b/packages/frontend/src/pages/settings/import-export.vue
@@ -45,7 +45,7 @@ SPDX-License-Identifier: AGPL-3.0-only
- {{ i18n.ts._exportOrImport.followingList }}
+ {{ i18n.ts._exportOrImport.followingList }}
{{ i18n.ts.export }}
@@ -71,7 +71,7 @@ SPDX-License-Identifier: AGPL-3.0-only
- {{ i18n.ts._exportOrImport.userLists }}
+ {{ i18n.ts._exportOrImport.userLists }}
{{ i18n.ts.export }}
diff --git a/packages/frontend/src/pages/user/activity.vue b/packages/frontend/src/pages/user/activity.vue
index d36fb83616..c8d79ea670 100644
--- a/packages/frontend/src/pages/user/activity.vue
+++ b/packages/frontend/src/pages/user/activity.vue
@@ -15,7 +15,7 @@ SPDX-License-Identifier: AGPL-3.0-only
- Following
+ Following
diff --git a/packages/frontend/src/widgets/WidgetUserList.vue b/packages/frontend/src/widgets/WidgetUserList.vue
index ac273cc5d5..d9f4dc49ea 100644
--- a/packages/frontend/src/widgets/WidgetUserList.vue
+++ b/packages/frontend/src/widgets/WidgetUserList.vue
@@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-
+
{{ list ? list.name : i18n.ts._widgets.userList }}
diff --git a/packages/frontend/vite.config.ts b/packages/frontend/vite.config.ts
index 34976622bb..508dc548b7 100644
--- a/packages/frontend/vite.config.ts
+++ b/packages/frontend/vite.config.ts
@@ -126,7 +126,7 @@ export function getConfig(): UserConfig {
'**/pages/flash/flash.*',
],
}),
- iconsReplace({
+ iconsReplace({
values: {
'ti ti-terminal-2': 'ph-terminal-window ph-bold ph-lg',
'ti ti-download': 'ph-download ph-bold ph-lg',
@@ -161,6 +161,7 @@ export function getConfig(): UserConfig {
'ti ti-eye-off': 'ti ti-eye-exclamation',
'ti ti-eye-exclamation': 'ph-eye-slash ph-bold ph-lg',
'ti ti-lock': 'ph-lock ph-bold ph-lg',
+ 'ti ti-users': 'ph-users ph-bold ph-lg',
},
}),
...process.env.NODE_ENV === 'production'