Add retrieved color to path
All checks were successful
ci/woodpecker/push/build Pipeline was successful
All checks were successful
ci/woodpecker/push/build Pipeline was successful
This commit is contained in:
parent
8f30dd9f54
commit
616a62d4b5
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
// import Splash from '$lib/components/Splash.svelte';
|
||||
|
||||
export let data;
|
||||
let categories = data.categories;
|
||||
let categories: App.Category[] = data.categories;
|
||||
</script>
|
||||
|
||||
|
||||
|
@ -14,7 +14,7 @@
|
|||
<div id="welcome-message">Benvenuti a <span class="bold">Pianello Val Tidone</span></div>
|
||||
<div id="route-cards">
|
||||
{#each categories as category}
|
||||
<Path color="#de0e1b" name="{category.name_it}" id="{category.id}" />
|
||||
<Path color={category.color} name="{category.name_it}" id={String(category.id)} />
|
||||
{/each}
|
||||
</div>
|
||||
</main>
|
||||
|
|
Loading…
Reference in a new issue