Skip to content

Commit 36a3941

Browse files
committed
3 files modified
1 parent ab22975 commit 36a3941

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

package-lock.json

Lines changed: 5 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "HC200ok",
44
"description": "A customizable and easy-to-use data table component made with Vue.js 3.x.",
55
"private": false,
6-
"version": "1.5.42",
6+
"version": "1.5.43",
77
"types": "./types/main.d.ts",
88
"license": "MIT",
99
"files": [
@@ -59,5 +59,3 @@
5959
"vue-tsc": "^0.34.7"
6060
}
6161
}
62-
63-

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function getItemValue(column: string, item: Item) {
1111
i += 1;
1212
if (content === undefined) break;
1313
}
14-
return content;
14+
return content ?? '';
1515
}
1616
return item[column] ?? '';
1717
}

0 commit comments

Comments
 (0)