UBER-496: Fix few issues (#3439)

This commit is contained in:
Andrey Sobolev
2023-06-16 18:29:07 +07:00
committed by GitHub
parent 354e76e1f1
commit 05d273bb59
33 changed files with 277 additions and 61 deletions
+5 -4
View File
@@ -21,11 +21,11 @@ import {
CreateAggregationManagerFunc,
GetAllValuesFunc,
GrouppingManagerResource,
KeyFilter,
SortFunc,
Viewlet,
ViewletDescriptor,
ViewQueryAction,
KeyFilter
Viewlet,
ViewletDescriptor
} from '@hcengineering/view'
import tracker, { trackerId } from '../../tracker/lib'
@@ -382,7 +382,8 @@ export default mergeIds(trackerId, tracker, {
GetAllPriority: '' as GetAllValuesFunc,
GetAllComponents: '' as GetAllValuesFunc,
GetAllMilestones: '' as GetAllValuesFunc,
GetVisibleFilters: '' as Resource<(filters: KeyFilter[], space?: Ref<Space>) => Promise<KeyFilter[]>>
GetVisibleFilters: '' as Resource<(filters: KeyFilter[], space?: Ref<Space>) => Promise<KeyFilter[]>>,
IsProjectJoined: '' as Resource<(space: Space) => Promise<boolean>>
},
aggregation: {
CreateComponentAggregationManager: '' as CreateAggregationManagerFunc,