Skip to content

Commit

Permalink
fix: fix scrollClass
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Araujo committed Nov 10, 2022
1 parent 909f163 commit e868753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SelectInput/SelectInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export default {
computed: {
scrollClass() {
return this.hasScroll ? 'overflow-y-auto' : 'overflow-hidden';
return this.hasScroll && 'overflow-y-auto';
},
},
Expand Down

0 comments on commit e868753

Please sign in to comment.