mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed linter error.
This commit is contained in:
parent
0c2a7e21c4
commit
2a7b5a572f
@ -127,7 +127,7 @@ function registerAutocomplete(api, transId, sqlEditorPref, onFailure) {
|
|||||||
function setAutoCompleteData() {
|
function setAutoCompleteData() {
|
||||||
const searchRe = new RegExp('^"{0,1}' + search, 'i');
|
const searchRe = new RegExp('^"{0,1}' + search, 'i');
|
||||||
let filterData = self_local.editor.state.autoCompleteList.filter((item)=>{
|
let filterData = self_local.editor.state.autoCompleteList.filter((item)=>{
|
||||||
return searchRe.test(item.text)
|
return searchRe.test(item.text);
|
||||||
});
|
});
|
||||||
|
|
||||||
cb({
|
cb({
|
||||||
|
Loading…
Reference in New Issue
Block a user