mirror of
https://github.com/frappe/lms.git
synced 2026-05-02 13:39:31 +03:00
Merge pull request #1934 from rehanrehman389/fix/jobs
fix: skip closed jobs API call for guest users
This commit is contained in:
@@ -137,6 +137,10 @@ const isModerator = computed(() => {
|
||||
})
|
||||
|
||||
const getClosedJobCount = () => {
|
||||
if (!user.data?.name) {
|
||||
return
|
||||
}
|
||||
|
||||
const filters = {
|
||||
status: 'Closed',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user