diff --git a/ui/src/components/view/DetailSettings.vue b/ui/src/components/view/DetailSettings.vue index 57c5343ab7d..ba96ad6ee8b 100644 --- a/ui/src/components/view/DetailSettings.vue +++ b/ui/src/components/view/DetailSettings.vue @@ -170,7 +170,11 @@ export default { return [] } if (!Array.isArray(this.detailOptions[this.newKey])) { - return { value: this.detailOptions[this.newKey] } + if (this.detailOptions[this.newKey]) { + return { value: this.detailOptions[this.newKey] } + } else { + return '' + } } return this.detailOptions[this.newKey].map(value => { return { value: value }