diff --git a/webapp/components/generic/SearchableInput/SearchableInput.vue b/webapp/components/generic/SearchableInput/SearchableInput.vue index 987fd596b..7bd0e7985 100644 --- a/webapp/components/generic/SearchableInput/SearchableInput.vue +++ b/webapp/components/generic/SearchableInput/SearchableInput.vue @@ -92,7 +92,11 @@ export default { }, methods: { isSearchable(){ - return !isEmpty(this.value) && typeof this.value === 'string' && this.value.replace(/\s+/g, '').length >= 3 + return ( + !isEmpty(this.value) && + typeof this.value === 'string' && + this.value.replace(/\s+/g, '').length >= 3 + ) }, isFirstOfType(option) { return (