Fixed tabIndex on the connector page. Tab key should work as expected now.

This commit is contained in:
NI
2020-05-18 17:38:18 +08:00
parent 194de5af00
commit d7b9a8e437
2 changed files with 21 additions and 7 deletions

View File

@@ -151,7 +151,7 @@ export function build(tabIndex, i, field) {
this.suggestions.push({
title: suggestions[v].title,
value: suggestions[v].value,
fields: suggestions[v].meta
fields: suggestions[v].meta,
});
}
},
@@ -160,12 +160,12 @@ export function build(tabIndex, i, field) {
return {
title: "Input",
value: this.loadStored(defaultValue),
fields: {}
fields: {},
};
}
return this.suggestions[this.selected];
}
},
},
disableSuggestionsForInput(val) {
this.blockedSuggestionValue = val;
@@ -208,6 +208,6 @@ export function build(tabIndex, i, field) {
},
selectedSuggestionIndex() {
return this.suggestion.selected;
}
},
};
}