Skip to content

Commit

Permalink
Version 2.3.30
Browse files Browse the repository at this point in the history
  • Loading branch information
krusche-sensetence committed Jul 15, 2024
1 parent 458b397 commit 14eedf2
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 39 deletions.
2 changes: 1 addition & 1 deletion dist/vue-quintable.css

Large diffs are not rendered by default.

64 changes: 33 additions & 31 deletions dist/vue-quintable.es.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/vue-quintable.es.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/vue-quintable.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/vue-quintable.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sensetence/vue-quintable",
"version": "2.3.29",
"version": "2.3.30",
"private": false,
"scripts": {
"dev": "vite --config vite.build.config.js",
Expand Down
9 changes: 9 additions & 0 deletions src/components/VueQuintable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3941,6 +3941,11 @@ export default {
: cellsA[i].html
? cellsA[i].html
: cellsA[i].text;
if (typeof cellsA[i].computeSortValue === "function") {
aValue = cellsA[i].computeSortValue(this.currentSortIndexes);
}
let bValue =
typeof cellsB[i].sortValue !== "undefined" &&
cellsB[i].sortValue !== null
Expand All @@ -3949,6 +3954,10 @@ export default {
? cellsB[i].html
: cellsB[i].text;
if (typeof cellsB[i].computeSortValue === "function") {
aValue = cellsB[i].computeSortValue(this.currentSortIndexes);
}
if (typeof aValue === "string") {
aValue = aValue.toLowerCase();
}
Expand Down

0 comments on commit 14eedf2

Please sign in to comment.