feature/14-team-management #34

Manually merged
philipp merged 10 commits from feature/14-team-management into dev 2021-01-15 21:55:52 +00:00
Showing only changes of commit ace1a1b063 - Show all commits

View File

@ -2,6 +2,7 @@
import { _ } from "svelte-i18n"; import { _ } from "svelte-i18n";
import AddTeamModal from "./AddTeamModal.svelte"; import AddTeamModal from "./AddTeamModal.svelte";
let modal_open = false; let modal_open = false;
let current_teams = [];
</script> </script>
<div class="text-center items-center justify-center"> <div class="text-center items-center justify-center">
@ -11,4 +12,4 @@
</p> </p>
</div> </div>
<AddTeamModal bind:modal_open /> <AddTeamModal bind:modal_open bind:current_teams />