eschutho commented on a change in pull request #12087:
URL: 
https://github.com/apache/incubator-superset/pull/12087#discussion_r545439246



##########
File path: superset-frontend/src/SqlLab/components/SqlEditor.jsx
##########
@@ -417,6 +422,54 @@ class SqlEditor extends React.PureComponent {
     );
   }
 
+  renderDropdown() {
+    const qe = this.props.queryEditor;
+    const successful =
+      this.props.latestQuery && this.props.latestQuery.state === 'success';
+    const scheduleToolTip = successful
+      ? t('Schedule the query periodically')
+      : t('You must run the query successfully first');
+
+    return (
+      <Menu onClick={this.handleMenuClick}>
+        <Menu.Item>
+          {' '}
+          <span>Autocomplete</span>{' '}
+          <Switch

Review comment:
       are the spaces for styling? Can you use inline block style with margins 
instead?




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to