diff --git a/app/package.json b/app/package.json index c6bee7ee2..dbdae2c0e 100644 --- a/app/package.json +++ b/app/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "insomnia", - "version": "4.2.3", + "version": "4.2.4", "productName": "Insomnia", "longName": "Insomnia REST Client", "description": "A simple and beautiful REST API client", diff --git a/app/renderer.html b/app/renderer.html index d9e2b50f1..a39aa958c 100644 --- a/app/renderer.html +++ b/app/renderer.html @@ -50,7 +50,7 @@ let intervalErrorCount = 0; function resetErrorCount () { - intervalErrorCount = 0 + intervalErrorCount = 0 } // Reset error count after every interval diff --git a/app/ui/components/Wrapper.js b/app/ui/components/Wrapper.js index 9fa0bd721..d070ac47e 100644 --- a/app/ui/components/Wrapper.js +++ b/app/ui/components/Wrapper.js @@ -75,7 +75,7 @@ class Wrapper extends Component { // Import failed, that's alright } - models.request.update(activeRequest, {url}); + models.request.update(activeRequest, {url: text}); }; diff --git a/app/ui/css/layout/base.less b/app/ui/css/layout/base.less index 0ac4b37da..a95a876ac 100644 --- a/app/ui/css/layout/base.less +++ b/app/ui/css/layout/base.less @@ -78,7 +78,7 @@ table th { webview { height: 100%; width: 100%; - background-color: var(--color-bg); + background-color: #fff; } table { diff --git a/webpack/webpack.config.development.babel.js b/webpack/webpack.config.development.babel.js index 6565df44c..e25163dea 100644 --- a/webpack/webpack.config.development.babel.js +++ b/webpack/webpack.config.development.babel.js @@ -6,7 +6,7 @@ const PORT = 3333; export default { ...baseConfig, debug: true, - devtool: 'eval-source-map', + devtool: 'source-map', entry: [ ...baseConfig.entry, `webpack-hot-middleware/client?path=http://localhost:${PORT}/__webpack_hmr`