We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a18178 commit 3dbbb73Copy full SHA for 3dbbb73
1 file changed
ui/src/components/widgets/InfiniteScrollSelect.vue
@@ -221,7 +221,11 @@ export default {
221
const match = this.options.find(entry => entry[this.optionValueKey] === matchValue)
222
if (!match) {
223
this.successiveFetches++
224
- this.fetchItems()
+ if (this.options.length < this.totalCount) {
225
+ this.fetchItems()
226
+ } else {
227
+ this.resetPreselectedOptionValue()
228
+ }
229
return
230
}
231
if (Array.isArray(this.preselectedOptionValue) && this.preselectedOptionValue.length > 1) {
0 commit comments