mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 07:37:25 +01:00
Fix linting errors
Remove parentheses and add trailing comma.
This commit is contained in:
@@ -67,8 +67,8 @@ export default {
|
|||||||
return this.isDropdownOpen;
|
return this.isDropdownOpen;
|
||||||
},
|
},
|
||||||
isPressed () {
|
isPressed () {
|
||||||
return (this.isOpen ? 'true' : 'false');
|
return this.isOpen ? 'true' : 'false';
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
document.documentElement.addEventListener('click', this._clickOutListener);
|
document.documentElement.addEventListener('click', this._clickOutListener);
|
||||||
|
|||||||
Reference in New Issue
Block a user