fix(link share): default share view should be list, not project

This commit is contained in:
kolaente 2023-06-23 14:18:52 +02:00
parent d34a872d40
commit 8a22d1811e
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ async function load(projectId: IProject['id']) {
const links = await linkShareService.getAll({projectId})
links.forEach((l: ILinkShare) => {
selectedView.value[l.id] = 'project'
selectedView.value[l.id] = 'list'
})
linkShares.value = links
}