duplicate identifier for requests fixed (#1346)

Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
This commit is contained in:
Hari Narayanan
2020-11-27 17:12:33 +05:30
committed by GitHub
parent a5a812d3f4
commit 57627367f5
5 changed files with 30 additions and 30 deletions

View File

@@ -178,14 +178,8 @@
</li>
</ul>
<div class="blue">
<label for="label">{{ $t("label") }}</label>
<input
id="label"
name="label"
type="text"
v-model="label"
:placeholder="$t('optional')"
/>
<label for="name">{{ $t("token_req_name") }}</label>
<input id="name" name="name" type="text" v-model="name" />
</div>
<div
class="blue"
@@ -1461,7 +1455,7 @@ export default {
this.testsEnabled = true
this.testScript = newValue.testScript
}
this.label = newValue.label
this.name = newValue.name
},
editingRequest(newValue) {
this.editRequest = newValue
@@ -1528,12 +1522,12 @@ export default {
this.$store.commit("setState", { value, attribute: "path" })
},
},
label: {
name: {
get() {
return this.$store.state.request.label
return this.$store.state.request.name
},
set(value) {
this.$store.commit("setState", { value, attribute: "label" })
this.$store.commit("setState", { value, attribute: "name" })
},
},
auth: {
@@ -1739,7 +1733,7 @@ export default {
return this.$store.state.postwoman.editingRequest
},
requestName() {
return this.label
return this.name
},
statusCategory() {
return findStatusGroup(this.response.status)
@@ -1878,7 +1872,7 @@ export default {
})
},
handleUseHistory(entry) {
this.label = entry.label
this.name = entry.name
this.method = entry.method
this.uri = entry.url + entry.path
this.url = entry.url
@@ -2021,7 +2015,7 @@ export default {
this.response.body = payload.data
// Addition of an entry to the history component.
const entry = {
label: this.requestName,
name: this.requestName,
status: this.response.status,
date: new Date().toLocaleDateString(),
time: new Date().toLocaleTimeString(),
@@ -2076,7 +2070,7 @@ export default {
this.response.body = error.response.data
// Addition of an entry to the history component.
const entry = {
label: this.requestName,
name: this.requestName,
status: this.response.status,
date: new Date().toLocaleDateString(),
time: new Date().toLocaleTimeString(),
@@ -2427,7 +2421,7 @@ export default {
this.url = "https://httpbin.org"
this.path = "/get"
this.uri = this.url + this.path
this.label = ""
this.name = "Untitled request"
this.bodyParams = []
this.rawParams = "{}"
this.files = []
@@ -2480,7 +2474,7 @@ export default {
requestType: this.requestType,
preRequestScript: this.showPreRequestScript == true ? this.preRequestScript : null,
testScript: this.testsEnabled == true ? this.testScript : null,
label: this.requestName,
name: this.requestName,
}
if (this.selectedRequest.url) {
this.editRequest = Object.assign({}, this.selectedRequest, this.editRequest)
@@ -2701,7 +2695,7 @@ export default {
if (Object.keys(this.$route.query).length) this.setRouteQueries(this.$route.query)
this.$watch(
(vm) => [
vm.label,
vm.name,
vm.method,
vm.url,
vm.auth,