mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-28 18:06:20 +02:00
lint.
This commit is contained in:
parent
1666693c25
commit
e25e9c2b24
1 changed files with 3 additions and 1 deletions
|
@ -95,7 +95,9 @@
|
|||
})
|
||||
export default class extends Vue {
|
||||
get filetransferAllowed() {
|
||||
return this.$accessor.remote.fileTransfer && (this.$accessor.user.admin || !this.$accessor.isLocked('file_transfer'))
|
||||
return (
|
||||
this.$accessor.remote.fileTransfer && (this.$accessor.user.admin || !this.$accessor.isLocked('file_transfer'))
|
||||
)
|
||||
}
|
||||
|
||||
get tab() {
|
||||
|
|
Loading…
Add table
Reference in a new issue