fix: linter
This commit is contained in:
@@ -120,7 +120,10 @@ const currentCategory = ref(null)
|
|||||||
const title = ref('')
|
const title = ref('')
|
||||||
const certification = ref(false)
|
const certification = ref(false)
|
||||||
const filters = ref({})
|
const filters = ref({})
|
||||||
const currentTab = useRouteQuery('tab', user.data?.is_student ? 'All' : 'Upcoming')
|
const currentTab = useRouteQuery(
|
||||||
|
'tab',
|
||||||
|
user.data?.is_student ? 'All' : 'Upcoming'
|
||||||
|
)
|
||||||
const orderBy = ref('start_date')
|
const orderBy = ref('start_date')
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
@@ -251,7 +254,7 @@ const setQueryParams = () => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
let queryString = '';
|
let queryString = ''
|
||||||
if (queries.toString()) {
|
if (queries.toString()) {
|
||||||
queryString = `?${queries.toString()}`
|
queryString = `?${queries.toString()}`
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -256,8 +256,7 @@ const setQueryParams = () => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
let queryString = ''
|
||||||
let queryString = '';
|
|
||||||
if (queries.toString()) {
|
if (queries.toString()) {
|
||||||
queryString = `?${queries.toString()}`
|
queryString = `?${queries.toString()}`
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user