We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e17a58 commit 413cc31Copy full SHA for 413cc31
1 file changed
src/shared/utils/transformations.ts
@@ -19,7 +19,7 @@ export const getFilters = (labels: any[]) => {
19
return {
20
...defaultFilter,
21
...labels.reduce((acc: any, label: any) => {
22
- acc[label.id] = (acc.vl || []).map((value: any) => value.id);
+ acc[label.id] = (label.vl || []).map((value: any) => value.id);
23
return acc;
24
}, {}),
25
};
0 commit comments