Skip to content

Commit

Permalink
[SQL Lab] Remove space after schema autocomplete (#9059)
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Ritter committed Jan 31, 2020
1 parent 2629c77 commit 47eecb8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion superset/assets/src/SqlLab/components/AceEditorWrapper.jsx
Expand Up @@ -149,7 +149,9 @@ class AceEditorWrapper extends React.PureComponent {
);
}
editor.completer.insertMatch({
value: `${data.caption}${data.meta === 'function' ? '' : ' '}`,
value: `${data.caption}${
['function', 'schema'].includes(data.meta) ? '' : ' '
}`,
});
},
};
Expand Down

0 comments on commit 47eecb8

Please sign in to comment.