mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-04 10:37:17 +00:00
fix: review changes
This commit is contained in:
@@ -20,9 +20,7 @@ const filterCollaborators = computed(() => {
|
||||
if (!collaborators.value) return []
|
||||
|
||||
return collaborators.value.filter((collab) =>
|
||||
collab.display_name
|
||||
? collab.display_name.toLowerCase().includes(userSearchText.value.toLowerCase())
|
||||
: collab.email.toLowerCase().includes(userSearchText.value.toLowerCase()),
|
||||
(collab.display_name || collab.email).toLowerCase().includes(userSearchText.value.toLowerCase()),
|
||||
)
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user