fix(Table): display nothing instead of error when key is missing

Fixes #1173
This commit is contained in:
Benjamin Canac
2024-01-02 11:10:42 +01:00
parent 30e7a3ca20
commit 00d0fd5919

View File

@@ -267,7 +267,7 @@ export default defineComponent({
}
}
function getRowData (row: Object, rowKey: string | string[], defaultValue: any = 'Failed to get cell value') {
function getRowData (row: Object, rowKey: string | string[], defaultValue: any = '') {
return get(row, rowKey, defaultValue)
}