mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 00:36:45 +00:00
chore: enable shutdown hooks (#10229)
Signed-off-by: mertmit <mertmit99@gmail.com>
This commit is contained in:
@@ -123,6 +123,9 @@ const categoriesQuery = computed({
|
||||
const getIntegrationsByCategory = (category: IntegrationCategoryType, query: string) => {
|
||||
return allIntegrations.filter((i) => {
|
||||
const isOssOnly = isEeUI ? !i?.isOssOnly : true
|
||||
|
||||
if (i.hidden) return false
|
||||
|
||||
return (
|
||||
isOssOnly && filterIntegration(i) && i.type === category && t(i.title).toLowerCase().includes(query.trim().toLowerCase())
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user