refactor: stick with the enforced style
This commit is contained in:
parent
12b7e22c31
commit
2b165a065c
1 changed files with 5 additions and 2 deletions
|
|
@ -1504,8 +1504,11 @@ export default {
|
|||
this.rawInput = !this.knownContentTypes.includes(val);
|
||||
},
|
||||
rawInput(status) {
|
||||
if (status && this.rawParams === "") this.rawParams = "{}";
|
||||
else this.setRouteQueryState();
|
||||
if (status && this.rawParams === "") {
|
||||
this.rawParams = "{}";
|
||||
} else {
|
||||
this.setRouteQueryState();
|
||||
}
|
||||
},
|
||||
"response.body": function(val) {
|
||||
if (
|
||||
|
|
|
|||
Loading…
Reference in a new issue