mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 05:06:50 +00:00
fix: lint error
This commit is contained in:
@@ -9,7 +9,6 @@ import {
|
||||
timeAgo,
|
||||
} from 'nocodb-sdk'
|
||||
import type { Roles, WorkspaceUserRoles } from 'nocodb-sdk'
|
||||
import InfiniteLoading from 'v3-infinite-loading'
|
||||
import { isEeUI, storeToRefs, useUserSorts } from '#imports'
|
||||
|
||||
const basesStore = useBases()
|
||||
@@ -75,24 +74,6 @@ const loadCollaborators = async () => {
|
||||
}
|
||||
}
|
||||
|
||||
const loadListData = async ($state: any) => {
|
||||
const prevUsersCount = collaborators.value?.length || 0
|
||||
if (collaborators.value?.length === totalCollaborators.value) {
|
||||
$state.complete()
|
||||
return
|
||||
}
|
||||
$state.loading()
|
||||
// const oldPagesCount = currentPage.value || 0
|
||||
|
||||
await loadCollaborators()
|
||||
|
||||
if (prevUsersCount === collaborators.value?.length) {
|
||||
$state.complete()
|
||||
return
|
||||
}
|
||||
$state.loaded()
|
||||
}
|
||||
|
||||
const updateCollaborator = async (collab: any, roles: ProjectRoles) => {
|
||||
const currentCollaborator = collaborators.value.find((coll) => coll.id === collab.id)!
|
||||
|
||||
|
||||
Reference in New Issue
Block a user