@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.
|
|
333
|
+
window.open(
|
|
334
|
+
`${linkUrl}${rowData}/${linkFolder}`
|
|
335
|
+
);
|
|
334
336
|
} else {
|
|
335
|
-
window.
|
|
337
|
+
window.open(`${linkUrl}${rowData}`);
|
|
336
338
|
}
|
|
337
339
|
}
|
|
338
340
|
} else {
|
package/package.json
CHANGED