@commonpub/layer 0.3.32 → 0.3.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/pages/index.vue +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commonpub/layer",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.33",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./nuxt.config.ts",
|
|
6
6
|
"files": [
|
|
@@ -44,14 +44,14 @@
|
|
|
44
44
|
"vue": "^3.4.0",
|
|
45
45
|
"vue-router": "^4.3.0",
|
|
46
46
|
"zod": "^4.3.6",
|
|
47
|
-
"@commonpub/auth": "0.5.0",
|
|
48
|
-
"@commonpub/config": "0.7.1",
|
|
49
47
|
"@commonpub/docs": "0.5.2",
|
|
50
|
-
"@commonpub/editor": "0.5.0",
|
|
51
48
|
"@commonpub/learning": "0.5.0",
|
|
49
|
+
"@commonpub/config": "0.7.1",
|
|
50
|
+
"@commonpub/auth": "0.5.0",
|
|
51
|
+
"@commonpub/server": "2.19.0",
|
|
52
52
|
"@commonpub/protocol": "0.9.5",
|
|
53
|
+
"@commonpub/editor": "0.5.0",
|
|
53
54
|
"@commonpub/schema": "0.8.13",
|
|
54
|
-
"@commonpub/server": "2.19.0",
|
|
55
55
|
"@commonpub/ui": "0.7.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
package/pages/index.vue
CHANGED
|
@@ -298,7 +298,7 @@ async function handleHubJoin(hubSlug: string): Promise<void> {
|
|
|
298
298
|
<i v-else class="fa-solid fa-users"></i>
|
|
299
299
|
</div>
|
|
300
300
|
<div class="cpub-hub-info">
|
|
301
|
-
<NuxtLink :to="`/hubs/${hub.slug}`" class="cpub-hub-name">{{ hub.name }}</NuxtLink>
|
|
301
|
+
<NuxtLink :to="hub.source === 'federated' ? `/federated-hubs/${hub.id}` : `/hubs/${hub.slug}`" class="cpub-hub-name">{{ hub.name }}</NuxtLink>
|
|
302
302
|
<div class="cpub-hub-members">{{ hub.memberCount ?? 0 }} members</div>
|
|
303
303
|
</div>
|
|
304
304
|
<button v-if="joinedHubs.has(hub.slug)" class="cpub-btn-joined" disabled><i class="fa-solid fa-check"></i> Joined</button>
|