From 196d681a636aa2f80a5bb391b2ec84fb5d30dbd7 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Sun, 27 Mar 2022 22:32:31 +0200 Subject: [PATCH] fix: Ghost icon, remove console.log --- src/routes/services/[id]/ghost/start.json.ts | 1 - src/routes/services/index.svelte | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/routes/services/[id]/ghost/start.json.ts b/src/routes/services/[id]/ghost/start.json.ts index f1f2250bd..4fd9e7fa4 100644 --- a/src/routes/services/[id]/ghost/start.json.ts +++ b/src/routes/services/[id]/ghost/start.json.ts @@ -111,7 +111,6 @@ export const post: RequestHandler = async (event) => { } } }; - console.log(JSON.stringify(composeFile.volumes)); const composeFileDestination = `${workdir}/docker-compose.yaml`; await fs.writeFile(composeFileDestination, yaml.dump(composeFile)); diff --git a/src/routes/services/index.svelte b/src/routes/services/index.svelte index fa5602778..2b5584270 100644 --- a/src/routes/services/index.svelte +++ b/src/routes/services/index.svelte @@ -10,6 +10,7 @@ import { goto } from '$app/navigation'; import N8n from '$lib/components/svg/services/N8n.svelte'; import UptimeKuma from '$lib/components/svg/services/UptimeKuma.svelte'; + import Ghost from '$lib/components/svg/services/Ghost.svelte'; export let services; async function newService() { @@ -64,6 +65,8 @@ {:else if service.type === 'uptimekuma'} + {:else if service.type === 'ghost'} + {/if}
{service.name}