mirror of
https://github.com/apache/superset.git
synced 2026-04-16 22:55:52 +00:00
[SQL Lab] Remove space after schema autocomplete (#9059)
This commit is contained in:
@@ -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) ? '' : ' '
|
||||
}`,
|
||||
});
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user