mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-13 03:50:02 -04:00
Fix a wacky bug
This commit is contained in:
parent
26fb0486fd
commit
344fbdea9f
2 changed files with 2 additions and 2 deletions
|
@ -284,7 +284,7 @@ app.post("/api/create-package", auth_psk, async function (req, res) {
|
||||||
author: req.body.author,
|
author: req.body.author,
|
||||||
version: req.body.version,
|
version: req.body.version,
|
||||||
description: req.body.description,
|
description: req.body.description,
|
||||||
tags: ["Hacking", "Animated", "Funny"],
|
tags: req.body.tags,
|
||||||
payload: req.body.payload,
|
payload: req.body.payload,
|
||||||
background_video: req.body.background_video_path,
|
background_video: req.body.background_video_path,
|
||||||
background_image: req.body.background_image_path,
|
background_image: req.body.background_image_path,
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
{#await assetPromise}
|
{#await assetPromise}
|
||||||
Loading assets...
|
Loading assets...
|
||||||
{:then assets}
|
{:then assets}
|
||||||
{#if Object.keys(assets).length > 1}
|
{#if Object.keys(assets).length > 0}
|
||||||
<div class="flex flex-row gap-6 flex-wrap justify-center">
|
<div class="flex flex-row gap-6 flex-wrap justify-center">
|
||||||
{#each Object.entries(assets) as [key, asset]}
|
{#each Object.entries(assets) as [key, asset]}
|
||||||
<a href={"/assets/" + key}>
|
<a href={"/assets/" + key}>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue