fix: teams create

This commit is contained in:
Torsten Dittmann
2022-10-28 11:38:05 +02:00
parent 5ae8c245ac
commit baf59b781b
2 changed files with 2 additions and 1 deletions
@@ -43,6 +43,7 @@
label="Name"
placeholder="Enter name"
autofocus={true}
required
bind:value={name} />
{#if !showCustomId}
<div>
@@ -27,7 +27,7 @@
const project = $page.params.project;
const teamCreated = async (event: CustomEvent<Models.Team>) => {
await goto(`${base}/console/project-${project}/authentication/teams-${event.detail.$id}`);
await goto(`${base}/console/project-${project}/authentication/teams/team-${event.detail.$id}`);
};
</script>