Skip to content

Commit

Permalink
fix(FilterPicker): fix multi-selection error (#1952)
Browse files Browse the repository at this point in the history
Co-authored-by: maxin <maxin@growingio.com>
  • Loading branch information
nnmax and maxin committed Apr 7, 2022
1 parent f06803f commit 1094ad5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ function ListAttrSelect(props: ListAttrSelectProps) {
);
setLoadingStatue(false);
});
}, [valueType, exprKey, attrSelect, curryDimensionValueRequest, defaultList]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [valueType, exprKey, attrSelect]);

switch (attrSelect) {
case 'hasAll':
Expand Down

1 comment on commit 1094ad5

@vercel
Copy link

@vercel vercel bot commented on 1094ad5 Apr 7, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

gio-design – ./

gio-design-growingio.vercel.app
gio-design-git-master-growingio.vercel.app
gio-design.vercel.app

Please sign in to comment.