You've already forked AstralRinth
forked from didirus/AstralRinth
Fix collection page (#1534)
* Fix collection page * remove wrangler.toml
This commit is contained in:
@@ -412,8 +412,12 @@ try {
|
|||||||
await useAsyncData(`user/${collection.value.user}`, () =>
|
await useAsyncData(`user/${collection.value.user}`, () =>
|
||||||
useBaseFetch(`user/${collection.value.user}`)
|
useBaseFetch(`user/${collection.value.user}`)
|
||||||
),
|
),
|
||||||
await useAsyncData(`projects?ids=${JSON.stringify(collection.value.projects)}]`, () =>
|
await useAsyncData(
|
||||||
useBaseFetch(`projects?ids=${JSON.stringify(collection.value.projects)}`)
|
`projects?ids=${encodeURIComponent(JSON.stringify(collection.value.projects))}]`,
|
||||||
|
() =>
|
||||||
|
useBaseFetch(
|
||||||
|
`projects?ids=${encodeURIComponent(JSON.stringify(collection.value.projects))}`
|
||||||
|
)
|
||||||
),
|
),
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
name = "knossos"
|
|
||||||
main = "./.output/server/index.mjs"
|
|
||||||
workers_dev = true
|
|
||||||
compatibility_date = "2022-07-12"
|
|
||||||
account_id = "9ddae624c98677d68d93df6e524a6061"
|
|
||||||
node_compat = true
|
|
||||||
|
|
||||||
[site]
|
|
||||||
bucket = ".output/public"
|
|
||||||
Reference in New Issue
Block a user