Add icons
This commit is contained in:
parent
a742a3d2e3
commit
e471b11d3b
@ -8,6 +8,8 @@
|
|||||||
import LanguageTool from '$lib/components/svg/services/LanguageTool.svelte';
|
import LanguageTool from '$lib/components/svg/services/LanguageTool.svelte';
|
||||||
import { post } from '$lib/api';
|
import { post } from '$lib/api';
|
||||||
import { goto } from '$app/navigation';
|
import { goto } from '$app/navigation';
|
||||||
|
import N8n from '$lib/components/svg/services/N8n.svelte';
|
||||||
|
import UptimeKuma from '$lib/components/svg/services/UptimeKuma.svelte';
|
||||||
|
|
||||||
export let services;
|
export let services;
|
||||||
async function newService() {
|
async function newService() {
|
||||||
@ -58,6 +60,10 @@
|
|||||||
<VaultWarden isAbsolute />
|
<VaultWarden isAbsolute />
|
||||||
{:else if service.type === 'languagetool'}
|
{:else if service.type === 'languagetool'}
|
||||||
<LanguageTool isAbsolute />
|
<LanguageTool isAbsolute />
|
||||||
|
{:else if service.type === 'n8n'}
|
||||||
|
<N8n isAbsolute />
|
||||||
|
{:else if service.type === 'uptimekuma'}
|
||||||
|
<UptimeKuma isAbsolute />
|
||||||
{/if}
|
{/if}
|
||||||
<div class="font-bold text-xl text-center truncate">
|
<div class="font-bold text-xl text-center truncate">
|
||||||
{service.name}
|
{service.name}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user