Fix opening link share list view
This commit is contained in:
parent
f1561a491b
commit
815844fe2a
2 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@
|
|||
auth.linkShareAuth(this.$route.params.share)
|
||||
.then((r) => {
|
||||
this.loading = false
|
||||
router.push({name: 'list.index', params: {listId: r.listId}})
|
||||
router.push({name: 'list.list', params: {listId: r.list_id}})
|
||||
})
|
||||
.catch(e => {
|
||||
this.error(e, this)
|
||||
|
|
|
@ -13,7 +13,7 @@ import UserSettingsComponent from '@/components/user/Settings'
|
|||
import NewListComponent from '@/components/lists/NewList'
|
||||
import EditListComponent from '@/components/lists/EditList'
|
||||
import ShowTasksInRangeComponent from '@/components/tasks/ShowTasksInRange'
|
||||
import LinkShareAuthComponent from '@/components/sharing/linkSharingAuth'
|
||||
import LinkShareAuthComponent from '../components/sharing/linkSharingAuth'
|
||||
import TaskDetailViewModal from '../components/tasks/TaskDetailViewModal'
|
||||
// Namespace Handling
|
||||
import NewNamespaceComponent from '@/components/namespaces/NewNamespace'
|
||||
|
|
Loading…
Reference in a new issue