|
@@ -246,7 +246,7 @@
|
|
if (!record) return false;
|
|
if (!record) return false;
|
|
const { key, dataIndex } = column;
|
|
const { key, dataIndex } = column;
|
|
const value = unref(currentValueRef);
|
|
const value = unref(currentValueRef);
|
|
- if (!key || !dataIndex) return;
|
|
|
|
|
|
+ if (!key && !dataIndex) return;
|
|
|
|
|
|
const dataKey = (dataIndex || key) as string;
|
|
const dataKey = (dataIndex || key) as string;
|
|
|
|
|