Skip to content

Commit 14eedf2

Browse files
Version 2.3.30
1 parent 458b397 commit 14eedf2

7 files changed

+50
-39
lines changed

dist/vue-quintable.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-quintable.es.js

+33-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-quintable.es.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-quintable.umd.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-quintable.umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sensetence/vue-quintable",
3-
"version": "2.3.29",
3+
"version": "2.3.30",
44
"private": false,
55
"scripts": {
66
"dev": "vite --config vite.build.config.js",

src/components/VueQuintable.vue

+9
Original file line numberDiff line numberDiff line change
@@ -3941,6 +3941,11 @@ export default {
39413941
: cellsA[i].html
39423942
? cellsA[i].html
39433943
: cellsA[i].text;
3944+
3945+
if (typeof cellsA[i].computeSortValue === "function") {
3946+
aValue = cellsA[i].computeSortValue(this.currentSortIndexes);
3947+
}
3948+
39443949
let bValue =
39453950
typeof cellsB[i].sortValue !== "undefined" &&
39463951
cellsB[i].sortValue !== null
@@ -3949,6 +3954,10 @@ export default {
39493954
? cellsB[i].html
39503955
: cellsB[i].text;
39513956
3957+
if (typeof cellsB[i].computeSortValue === "function") {
3958+
aValue = cellsB[i].computeSortValue(this.currentSortIndexes);
3959+
}
3960+
39523961
if (typeof aValue === "string") {
39533962
aValue = aValue.toLowerCase();
39543963
}

0 commit comments

Comments
 (0)