mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-25 20:16:14 -05:00
[web] Remove ternary statements
This commit is contained in:
@@ -55,7 +55,10 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
icon() {
|
||||
return this.hidden ? 'chevron-down' : 'chevron-up'
|
||||
if (this.hidden) {
|
||||
return 'chevron-down'
|
||||
}
|
||||
return 'chevron-up'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user