Fixed tabIndex on the connector page. Tab key should work as expected now.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user