@visns-studio/visns-components 2.7.1 → 2.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1806,8 +1806,10 @@ const DataGrid = forwardRef(
|
|
|
1806
1806
|
filterEditor: filterEditor,
|
|
1807
1807
|
filterEditorProps: filterEditorProps,
|
|
1808
1808
|
render: ({ data }) => {
|
|
1809
|
-
if (data) {
|
|
1810
|
-
return
|
|
1809
|
+
if (data && data[column.id]) {
|
|
1810
|
+
return (
|
|
1811
|
+
<span>{parse(data[column.id])}</span>
|
|
1812
|
+
);
|
|
1811
1813
|
} else {
|
|
1812
1814
|
return null;
|
|
1813
1815
|
}
|
package/package.json
CHANGED