diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-08-20 19:55:21 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-08-20 19:55:21 +0200 |
commit | 71d37e758fbc155a14f13989e7ed05e7719c2159 (patch) | |
tree | 2780090e1dd784d7a3bfe9e221d87b0df69ef436 /web/pw-server/src/routes/bots | |
parent | 329fc73b94852697f7a057957a714d961a2e9e3b (diff) | |
download | planetwars.dev-71d37e758fbc155a14f13989e7ed05e7719c2159.tar.xz planetwars.dev-71d37e758fbc155a14f13989e7ed05e7719c2159.zip |
implement LinkButton component
Diffstat (limited to 'web/pw-server/src/routes/bots')
-rw-r--r-- | web/pw-server/src/routes/bots/[bot_name].svelte | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/pw-server/src/routes/bots/[bot_name].svelte b/web/pw-server/src/routes/bots/[bot_name].svelte index 471e530..5fe4cc7 100644 --- a/web/pw-server/src/routes/bots/[bot_name].svelte +++ b/web/pw-server/src/routes/bots/[bot_name].svelte @@ -35,6 +35,7 @@ import dayjs from "dayjs"; import { currentUser } from "$lib/stores/current_user"; import MatchList from "$lib/components/matches/MatchList.svelte"; + import LinkButton from "$lib/components/LinkButton.svelte"; export let bot: object; export let owner: object; @@ -97,7 +98,7 @@ <MatchList {matches} /> {#if matches.length > 0} <div class="btn-container"> - <a class="btn" href={`/matches?bot=${bot["name"]}`}>All matches</a> + <LinkButton href={`/matches?bot=${bot["name"]}`}>All matches</LinkButton> </div> {/if} </div> |