Skip to content
Snippets Groups Projects

Prepare release 3.2.0

Merged Jonathan Weth requested to merge release/3.2.0 into stable-3.2
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -144,7 +144,7 @@ export default {
},
methods: {
comparator(array, value) {
return array && array.includes(value);
return Array.isArray(array) && array.includes(value);
},
},
};
Loading