Skip to content

Commit

Permalink
Upgrade Vue 3.5.5 (#27290)
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert authored Sep 14, 2024
1 parent 8302eda commit 9f080bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generators/vue/resources/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"pinia": "2.2.2",
"rxjs": "7.8.1",
"sockjs-client": "1.6.1",
"vue": "3.5.3",
"vue": "3.5.5",
"vue-i18n": "10.0.1",
"vue-router": "4.4.5"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const orderBy = (array: any[], opts: OrderByOptions) => {
sorted = array.sort((a, b) => compareAny(a, b));
}
if (reverse) {
sorted.reverse();
return sorted.slice().reverse();
}
return sorted;
};
Expand Down

0 comments on commit 9f080bd

Please sign in to comment.