@visns-studio/visns-components 2.0.6 → 2.0.7

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.
@@ -330,9 +330,11 @@ const DataGrid = forwardRef(
330
330
 
331
331
  if (rowProps.data[fileRelationArray[0]]) {
332
332
  if (linkFolder !== '') {
333
- window.location.href = `${linkUrl}${rowData}/${linkFolder}`;
333
+ window.open(
334
+ `${linkUrl}${rowData}/${linkFolder}`
335
+ );
334
336
  } else {
335
- window.location.href = `${linkUrl}${rowData}`;
337
+ window.open(`${linkUrl}${rowData}`);
336
338
  }
337
339
  }
338
340
  } else {
package/package.json CHANGED
@@ -40,7 +40,7 @@
40
40
  "react-dom": "^17.0.1"
41
41
  },
42
42
  "name": "@visns-studio/visns-components",
43
- "version": "2.0.6",
43
+ "version": "2.0.7",
44
44
  "description": "Various packages to assist in the development of our Custom Applications.",
45
45
  "main": "index.js",
46
46
  "scripts": {