@visns-studio/visns-components 1.4.14 → 1.4.16

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.
@@ -597,6 +597,8 @@ const DataGrid = forwardRef(
597
597
  ...commonProps,
598
598
  name: `${column.type}.${column.id}`,
599
599
  render: ({ data }) => {
600
+ value = "";
601
+
600
602
  if (data.address1) {
601
603
  value += `${data.address1} `;
602
604
  }
@@ -612,6 +614,8 @@ const DataGrid = forwardRef(
612
614
  if (data.postcode) {
613
615
  value += `${data.postcode} `;
614
616
  }
617
+
618
+ return <span>{value}</span>;
615
619
  },
616
620
  };
617
621
  case "age":
package/package.json CHANGED
@@ -35,7 +35,7 @@
35
35
  "react-dom": "^17.0.1"
36
36
  },
37
37
  "name": "@visns-studio/visns-components",
38
- "version": "1.4.14",
38
+ "version": "1.4.16",
39
39
  "description": "Various packages to assist in the development of our Custom Applications.",
40
40
  "main": "index.js",
41
41
  "devDependencies": {},