This is an automated email from the ASF dual-hosted git repository. villebro pushed a commit to branch 1.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 2cdb92d05c9b8bbeb24bf48859cf05afdcd41aad Author: Jesse Yang <[email protected]> AuthorDate: Fri Jan 22 14:26:02 2021 -0800 fix: faster search for Change Dataset modal (#12669) --- superset-frontend/src/datasource/ChangeDatasourceModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/datasource/ChangeDatasourceModal.tsx b/superset-frontend/src/datasource/ChangeDatasourceModal.tsx index 1ab8249..7831dba 100644 --- a/superset-frontend/src/datasource/ChangeDatasourceModal.tsx +++ b/superset-frontend/src/datasource/ChangeDatasourceModal.tsx @@ -133,7 +133,7 @@ const ChangeDatasourceModal: FunctionComponent<ChangeDatasourceModalProps> = ({ }), }); }, - 1000, + 300, [filter], );
