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 1984642 commit 1f0ad5cCopy full SHA for 1f0ad5c
ui/src/components/view/SearchView.vue
@@ -445,6 +445,13 @@ export default {
445
this.fields[apiKeyAccessIndex].loading = false
446
}
447
448
+ if (arrayField.includes('usersource')) {
449
+ const userSourceIndex = this.fields.findIndex(item => item.name === 'usersource')
450
+ this.fields[userSourceIndex].loading = true
451
+ this.fields[userSourceIndex].opts = this.fetchAvailableUserSourceTypes()
452
+ this.fields[userSourceIndex].loading = false
453
+ }
454
+
455
if (arrayField.includes('arch')) {
456
const typeIndex = this.fields.findIndex(item => item.name === 'arch')
457
this.fields[typeIndex].loading = true
0 commit comments