This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 13f374a make loading icon bigger (#6485)
13f374a is described below
commit 13f374aa9e268b78e82a8d520f111ad39e59599e
Author: Junda Yang <[email protected]>
AuthorDate: Tue Dec 4 20:43:14 2018 -0800
make loading icon bigger (#6485)
---
superset/assets/src/SqlLab/components/TableElement.jsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset/assets/src/SqlLab/components/TableElement.jsx
b/superset/assets/src/SqlLab/components/TableElement.jsx
index d87d7e5..e316940 100644
--- a/superset/assets/src/SqlLab/components/TableElement.jsx
+++ b/superset/assets/src/SqlLab/components/TableElement.jsx
@@ -172,7 +172,7 @@ class TableElement extends React.PureComponent {
</div>
<div className="pull-right">
{table.isMetadataLoading || table.isExtraMetadataLoading ?
- <Loading size={20} />
+ <Loading size={50} />
:
this.renderControls()
}