Fixed carousel sort issue

pull/496/head
Cagatay Civici 2020-09-23 16:06:34 +03:00
parent f2d0121f12
commit 6aeefbce5a
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ export default {
`;
if (this.responsiveOptions) {
let _responsiveOptions = {...this.responsiveOptions};
let _responsiveOptions = [...this.responsiveOptions];
_responsiveOptions.sort((data1, data2) => {
const value1 = data1.breakpoint;
const value2 = data2.breakpoint;