Fixed pasting into URL bar

This commit is contained in:
Gregory Schier 2017-01-30 10:06:27 -08:00
parent ef95e32577
commit dfa514c81d
5 changed files with 5 additions and 5 deletions

View File

@ -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",

View File

@ -75,7 +75,7 @@ class Wrapper extends Component {
// Import failed, that's alright
}
models.request.update(activeRequest, {url});
models.request.update(activeRequest, {url: text});
};

View File

@ -78,7 +78,7 @@ table th {
webview {
height: 100%;
width: 100%;
background-color: var(--color-bg);
background-color: #fff;
}
table {

View File

@ -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`