aboutsummaryrefslogtreecommitdiff
path: root/src/components/SearchModal.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/SearchModal.vue')
-rw-r--r--src/components/SearchModal.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SearchModal.vue b/src/components/SearchModal.vue
index 01db1ab..7406634 100644
--- a/src/components/SearchModal.vue
+++ b/src/components/SearchModal.vue
@@ -70,7 +70,7 @@ export default defineComponent({
let br = this.uiOpts.borderRadius;
return {
backgroundColor: this.uiOpts.bgColorAlt,
- borderRadius: this.searchSuggs.length == 0 ? `${br}px` : `${br}px ${br}px 0 0`,
+ borderRadius: (this.searchSuggs.length == 0) ? `${br}px` : `${br}px ${br}px 0 0`,
boxShadow: this.uiOpts.shadowNormal,
};
},