Make sure all create views have the animation

This commit is contained in:
kolaente 2021-01-21 21:48:15 +01:00
parent cef4c41d0a
commit 7cb3ef18d3
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 12 additions and 4 deletions

View File

@ -159,7 +159,9 @@ export default new Router({
{
path: '/namespaces/new',
name: 'namespace.create',
component: NewNamespaceComponent,
components: {
popup: NewNamespaceComponent,
},
},
{
path: '/namespaces/:id/edit',
@ -244,7 +246,9 @@ export default new Router({
{
path: '/teams/new',
name: 'teams.create',
component: NewTeamComponent,
components: {
popup: NewTeamComponent,
},
},
{
path: '/teams/:id/edit',
@ -259,7 +263,9 @@ export default new Router({
{
path: '/labels/new',
name: 'labels.create',
component: NewLabelComponent,
component: {
popup: NewLabelComponent,
},
},
{
path: '/migrate',
@ -274,7 +280,9 @@ export default new Router({
{
path: '/filters/new',
name: 'filters.create',
component: CreateSavedFilter,
components: {
popup: CreateSavedFilter,
},
},
{
path: '/auth/openid/:provider',