Browse Source

Add small linting fix

Signed-off-by: Janis Köhr <janis.koehr@novatec-gmbh.de>
pull/16929/head
Janis Köhr 7 years ago
parent
commit
05ef7725e2
No known key found for this signature in database GPG Key ID: AC5C634CEF63743A
  1. 2
      apps/accessibility/js/accessibility.js.map
  2. 8
      apps/accessibility/src/components/itemPreview.vue

2
apps/accessibility/js/accessibility.js.map
File diff suppressed because it is too large
View File

8
apps/accessibility/src/components/itemPreview.vue

@ -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…
Cancel
Save