mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
Fixed pasting into URL bar
This commit is contained in:
parent
ef95e32577
commit
dfa514c81d
@ -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",
|
||||
|
@ -75,7 +75,7 @@ class Wrapper extends Component {
|
||||
// Import failed, that's alright
|
||||
}
|
||||
|
||||
models.request.update(activeRequest, {url});
|
||||
models.request.update(activeRequest, {url: text});
|
||||
};
|
||||
|
||||
|
||||
|
@ -78,7 +78,7 @@ table th {
|
||||
webview {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
background-color: var(--color-bg);
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
table {
|
||||
|
@ -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`
|
||||
|
Loading…
Reference in New Issue
Block a user