[web] Remove ternary statements

This commit is contained in:
Alain Nussbaumer
2025-05-25 10:12:59 +02:00
parent 78ffba97d8
commit b251a4e418
9 changed files with 37 additions and 29 deletions

View File

@@ -55,7 +55,10 @@ export default {
},
computed: {
icon() {
return this.hidden ? 'chevron-down' : 'chevron-up'
if (this.hidden) {
return 'chevron-down'
}
return 'chevron-up'
}
}
}