Skip to content
Snippets Groups Projects
Commit 75eaf232 authored by piotr.kupczyk@id.ethz.ch's avatar piotr.kupczyk@id.ethz.ch
Browse files

SSDM-13463 : Export selection of fields from tables - UI part - fix TSV export...

SSDM-13463 : Export selection of fields from tables - UI part - fix TSV export "process is not defined" error
parent 38e41b7d
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -58,6 +58,7 @@ ...@@ -58,6 +58,7 @@
"jest-environment-jsdom": "^29.3.1", "jest-environment-jsdom": "^29.3.1",
"jest-junit": "^15.0.0", "jest-junit": "^15.0.0",
"prettier": "^2.8.1", "prettier": "^2.8.1",
"process": "^0.11.10",
"raw-loader": "^4.0.2", "raw-loader": "^4.0.2",
"react-hot-loader": "^4.13.1", "react-hot-loader": "^4.13.1",
"react-loader": "^2.4.7", "react-loader": "^2.4.7",
......
...@@ -78,6 +78,9 @@ module.exports = { ...@@ -78,6 +78,9 @@ module.exports = {
}), }),
new Webpack.ProvidePlugin({ new Webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'] Buffer: ['buffer', 'Buffer']
}),
new Webpack.ProvidePlugin({
process: 'process/browser'
}) })
] ]
} }
...@@ -50,6 +50,9 @@ module.exports = { ...@@ -50,6 +50,9 @@ module.exports = {
plugins: [ plugins: [
new Webpack.ProvidePlugin({ new Webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'] Buffer: ['buffer', 'Buffer']
}),
new Webpack.ProvidePlugin({
process: 'process/browser'
}) })
], ],
......
...@@ -54,6 +54,9 @@ module.exports = { ...@@ -54,6 +54,9 @@ module.exports = {
}), }),
new Webpack.ProvidePlugin({ new Webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'] Buffer: ['buffer', 'Buffer']
}),
new Webpack.ProvidePlugin({
process: 'process/browser'
}) })
] ]
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment