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,
|
"private": true,
|
||||||
"name": "insomnia",
|
"name": "insomnia",
|
||||||
"version": "4.2.3",
|
"version": "4.2.4",
|
||||||
"productName": "Insomnia",
|
"productName": "Insomnia",
|
||||||
"longName": "Insomnia REST Client",
|
"longName": "Insomnia REST Client",
|
||||||
"description": "A simple and beautiful REST API client",
|
"description": "A simple and beautiful REST API client",
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
let intervalErrorCount = 0;
|
let intervalErrorCount = 0;
|
||||||
|
|
||||||
function resetErrorCount () {
|
function resetErrorCount () {
|
||||||
intervalErrorCount = 0
|
intervalErrorCount = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reset error count after every interval
|
// Reset error count after every interval
|
||||||
|
@ -75,7 +75,7 @@ class Wrapper extends Component {
|
|||||||
// Import failed, that's alright
|
// Import failed, that's alright
|
||||||
}
|
}
|
||||||
|
|
||||||
models.request.update(activeRequest, {url});
|
models.request.update(activeRequest, {url: text});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ table th {
|
|||||||
webview {
|
webview {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: var(--color-bg);
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
|
@ -6,7 +6,7 @@ const PORT = 3333;
|
|||||||
export default {
|
export default {
|
||||||
...baseConfig,
|
...baseConfig,
|
||||||
debug: true,
|
debug: true,
|
||||||
devtool: 'eval-source-map',
|
devtool: 'source-map',
|
||||||
entry: [
|
entry: [
|
||||||
...baseConfig.entry,
|
...baseConfig.entry,
|
||||||
`webpack-hot-middleware/client?path=http://localhost:${PORT}/__webpack_hmr`
|
`webpack-hot-middleware/client?path=http://localhost:${PORT}/__webpack_hmr`
|
||||||
|
Loading…
Reference in New Issue
Block a user