nvm
This commit is contained in:
parent
24f451215d
commit
cd799c3387
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "calckey",
|
||||
"version": "12.119.0-calc.13-rc.7",
|
||||
"version": "12.119.0-calc.13-rc.8",
|
||||
"codename": "aqua",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -10,15 +10,15 @@
|
|||
<template #header><i class="ph-bookmark-simple-bold ph-lg ph-fw ph-lg" style="margin-right: 0.5em;"></i>{{ i18n.ts.pinnedUsers }}</template>
|
||||
<XUserList :pagination="pinnedUsers"/>
|
||||
</MkFolder>
|
||||
<MkFolder v-if="user != null" class="_gap" persist-key="explore-popular-users">
|
||||
<MkFolder class="_gap" persist-key="explore-popular-users">
|
||||
<template #header><i class="ph-chart-line-up-bold ph-lg ph-fw ph-lg" style="margin-right: 0.5em;"></i>{{ i18n.ts.popularUsers }}</template>
|
||||
<XUserList :pagination="popularUsers"/>
|
||||
</MkFolder>
|
||||
<MkFolder v-if="user != null" class="_gap" persist-key="explore-recently-updated-users">
|
||||
<MkFolder class="_gap" persist-key="explore-recently-updated-users">
|
||||
<template #header><i class="ph-chat-bold ph-lg ph-fw ph-lg" style="margin-right: 0.5em;"></i>{{ i18n.ts.recentlyUpdatedUsers }}</template>
|
||||
<XUserList :pagination="recentlyUpdatedUsers"/>
|
||||
</MkFolder>
|
||||
<MkFolder v-if="user != null" class="_gap" persist-key="explore-recently-registered-users">
|
||||
<MkFolder class="_gap" persist-key="explore-recently-registered-users">
|
||||
<template #header><i class="ph-plus-bold ph-lg ph-fw ph-lg" style="margin-right: 0.5em;"></i>{{ i18n.ts.recentlyRegisteredUsers }}</template>
|
||||
<XUserList :pagination="recentlyRegisteredUsers"/>
|
||||
</MkFolder>
|
||||
|
@ -75,7 +75,6 @@ let tagsEl = $ref<InstanceType<typeof MkFolder>>();
|
|||
let tagsLocal = $ref([]);
|
||||
let tagsRemote = $ref([]);
|
||||
let thereArePinnedUsers = $ref(false);
|
||||
let user = $ref(true);
|
||||
|
||||
watch(() => props.tag, () => {
|
||||
if (tagsEl) tagsEl.toggleContent(props.tag == null);
|
||||
|
@ -85,8 +84,6 @@ watch(() => pinnedUsersList, () => {
|
|||
if (pinnedUsersList?.length > 0) thereArePinnedUsers = true;
|
||||
});
|
||||
|
||||
if ($i == null) { user = false; }
|
||||
|
||||
const tagUsers = $computed(() => ({
|
||||
endpoint: 'hashtags/users' as const,
|
||||
limit: 30,
|
||||
|
|
Loading…
Reference in New Issue