fix(filters): load projects after deleting a filter
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2023-03-28 16:44:48 +02:00
parent fda2e41346
commit c4d13dff2c
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 0 deletions

View File

@ -128,6 +128,7 @@ export function useSavedFilter(projectId?: MaybeRef<IProject['id']>) {
async function deleteFilter() {
await filterService.delete(filter.value)
await projectStore.loadProjects()
success({message: t('filters.delete.success')})
router.push({name: 'projects.index'})
}