feat: job application count

This commit is contained in:
Jannat Patel
2024-06-05 10:53:31 +05:30
parent a9b469d3bf
commit d932baf896
5 changed files with 92 additions and 3359 deletions

View File

@@ -147,7 +147,7 @@ const sidebarSettings = createResource({
Object.keys(data).forEach((key) => {
if (!parseInt(data[key])) {
sidebarLinks.value = sidebarLinks.value.filter(
(link) => link.label.toLowerCase() !== key
(link) => link.label.toLowerCase().split(' ').join('_') !== key
)
}
})