We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec41559 commit be84d41Copy full SHA for be84d41
1 file changed
src/shared/utils/transformations.ts
@@ -26,5 +26,5 @@ export const getFilters = (labels: any[]) => {
26
};
27
28
export const getGroupingByList = (labels: any) => {
29
- return { ...GroupByList, ...labels.map((label: any) => ({ value: label.id, label: label.id })) };
+ return [...GroupByList, ...labels.map((label: any) => ({ value: label.id, label: label.id }))];
30
0 commit comments