fixes list of apps not having the correct path in all situations

This commit is contained in:
kevmodrome 2020-04-13 16:09:53 +02:00
parent e4571bfbc3
commit 3b09ae82c1
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
<div>
<h4 style="margin-bottom: 20px">Choose an Application</h4>
{#each apps as app}
<a href={`./${app}`} class="app-link">{app}</a>
<a href={`/_builder/${app}`} class="app-link">{app}</a>
{/each}
</div>
</div>