forked from woem.men/forkey
fix frontend linting errors
This commit is contained in:
parent
56dcf2c956
commit
453bece184
2 changed files with 6 additions and 6 deletions
|
@ -46,7 +46,7 @@ const pagination = {
|
|||
function deleted(id: string) {
|
||||
if (paginationComponent.value) {
|
||||
paginationComponent.value.items = paginationComponent.value.items.filter(
|
||||
(item: any) => item.id !== id
|
||||
(item: any) => item.id !== id,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -490,7 +490,7 @@ const routes: RouteDef[] = [{
|
|||
path: '/',
|
||||
component: page(() => import('@/pages/_empty_.vue')),
|
||||
}],
|
||||
},{
|
||||
}, {
|
||||
path: '/my/notifications',
|
||||
component: page(() => import('@/pages/notifications.vue')),
|
||||
loginRequired: true,
|
||||
|
|
Loading…
Reference in a new issue