We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9890c2d commit fb87cabCopy full SHA for fb87cab
frontend/src/components/Table/index.vue
@@ -65,7 +65,7 @@ const renderCell = (column: Column, record: Recordable) => {
65
const value = getValue(record, column.key)
66
let result = column.customRender?.({ value, record }) ?? value ?? '-'
67
if (!isVNode(result)) {
68
- result = h('div', result)
+ result = h('div', String(result))
69
}
70
return result
71
0 commit comments