mirror of
https://github.com/nextcloud/server.git
synced 2025-10-26 19:21:34 +00:00
Add small linting fix
Signed-off-by: Janis Köhr <janis.koehr@novatec-gmbh.de>
This commit is contained in:
parent
3334a315de
commit
05ef7725e2
File diff suppressed because one or more lines are too long
@ -19,12 +19,8 @@ export default {
|
||||
get() {
|
||||
return this.selected === this.preview.id;
|
||||
},
|
||||
set(val) {
|
||||
this.$emit(
|
||||
'select',
|
||||
val ? this.preview.id : false,
|
||||
this.selected
|
||||
);
|
||||
set(checked) {
|
||||
this.$emit('select', checked ? this.preview.id : false, this.selected);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user