mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-11 01:32:16 +01:00
add project progress sorting and fix direction ui for number based
columns in the project table
This commit is contained in:
@@ -12,7 +12,11 @@ export function useProjectMembersQuery(projectId: Ref<string | null> | string) {
|
||||
});
|
||||
|
||||
const query = useQuery({
|
||||
queryKey: computed(() => ['projectMembers', getCurrentOrganizationId(), projectIdValue.value]),
|
||||
queryKey: computed(() => [
|
||||
'projectMembers',
|
||||
getCurrentOrganizationId(),
|
||||
projectIdValue.value,
|
||||
]),
|
||||
queryFn: async () => {
|
||||
const organizationId = getCurrentOrganizationId();
|
||||
const pid = projectIdValue.value;
|
||||
|
||||
Reference in New Issue
Block a user