🐞 fixed merge conflict errors
All checks were successful
continuous-integration/drone/push Build is passing

ref #13 #12
This commit is contained in:
Philipp Dormann 2021-01-26 18:25:30 +01:00
parent 9a1f7a13f8
commit cbc1d53cc2
5 changed files with 12 additions and 3 deletions

View File

@ -49,6 +49,7 @@
import { register as registerSW } from "./swmodule";
import TeamDetail from "./components/TeamDetail.svelte";
import UserPermissions from "./components/UserPermissions.svelte";
import RunnerDetail from "./components/RunnerDetail.svelte";
store.init();
registerSW();
</script>
@ -87,9 +88,14 @@
</Route>
<Route path="/:trackid" let:params />
</Route>
<Route path="/runners">
<Route path="/runners/*">
<Route path="/">
<Runners />
</Route>
<Route path="/:runnerid" let:params>
<RunnerDetail {params} />
</Route>
</Route>
<Route path="/teams/*">
<Route path="/">
<Teams />

View File

@ -72,6 +72,7 @@
on:cancelDelete={(event) => {
import_modal_open = false;
}}
passed_team={{}}
passed_orgs={[]}
passed_org={orgdata}
opened_from="OrgDetail"

View File

@ -43,6 +43,7 @@
on:cancelDelete={(event) => {
import_modal_open = false;
}}
passed_team={{}}
passed_org={{}}
passed_orgs={current_organizations}
opened_from="OrgOverview"

View File

@ -69,7 +69,7 @@
</script>
{#await runner_promise}
<!-- -->
{$_('loading-runners')}
{:then}
<section class="container p-5 select-none">
<div class="flex flex-row mb-4">

View File

@ -103,6 +103,7 @@
"lfk-is-os": "The \"Lauf für Kaya!\" Frontend is (like all other projects for the \"LfK!\" Also) an open source project.",
"license": "License",
"licenses-are-being-loaded": "Licenses are being loaded...",
"loading-runners": "loading runners...",
"log_in": "Log in",
"log_in_to_your_account": "Log in to your account",
"login_is_checked": "Login is being checked...",