Add small linting fix

Signed-off-by: Janis Köhr <janis.koehr@novatec-gmbh.de>
This commit is contained in:
Janis Köhr 2019-09-03 09:14:42 +02:00
parent 3334a315de
commit 05ef7725e2
No known key found for this signature in database
GPG Key ID: AC5C634CEF63743A
2 changed files with 3 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@ -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);
}
}
},