diff --git a/package.json b/package.json
index bc38805ccd..db3f26e9b1 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "calckey",
- "version": "12.119.0-calc.13-rc.8",
+ "version": "12.119.0-calc.13-rc.9",
"codename": "aqua",
"repository": {
"type": "git",
diff --git a/packages/client/src/pages/explore.users.vue b/packages/client/src/pages/explore.users.vue
index 1535525f25..26cc4af35d 100644
--- a/packages/client/src/pages/explore.users.vue
+++ b/packages/client/src/pages/explore.users.vue
@@ -6,19 +6,19 @@
-
+
{{ i18n.ts.pinnedUsers }}
-
+
{{ i18n.ts.popularUsers }}
-
+
{{ i18n.ts.recentlyUpdatedUsers }}
-
+
{{ i18n.ts.recentlyRegisteredUsers }}
@@ -29,8 +29,8 @@
{{ i18n.ts.popularTags }}
- {{ t.tag }}
- {{ t.tag }}
+ {{ t.tag }}
+ {{ t.tag }}
@@ -76,6 +76,10 @@ let tagsLocal = $ref([]);
let tagsRemote = $ref([]);
let thereArePinnedUsers = $ref(false);
+const pinnedUsersList = await os.api('pinned-users');
+
+if (pinnedUsersList?.length > 0) { thereArePinnedUsers = true; }
+
watch(() => props.tag, () => {
if (tagsEl) tagsEl.toggleContent(props.tag == null);
});
@@ -94,11 +98,7 @@ const tagUsers = $computed(() => ({
},
}));
-const pinnedUsersList = await os.api('pinned-users');
-
-if (pinnedUsersList?.length > 0) { thereArePinnedUsers = true; }
-
-const pinnedUsers = { endpoint: 'pinned-users', limit: 10 };
+const pinnedUsers = { endpoint: 'pinned-users' };
const popularUsers = { endpoint: 'users', limit: 10, noPaging: true, params: {
state: 'alive',
origin: 'local',