This commit is contained in:
Liyas Thomas
2020-04-30 05:37:31 +05:30
parent 8f374e5244
commit f6269ad0ce
2 changed files with 6 additions and 1 deletions

View File

@@ -681,6 +681,11 @@ ol {
padding: 0;
list-style-type: none;
&.response-headers {
display: inline-flex;
width: 50%;
}
ul,
ol {
margin: 0;

View File

@@ -904,7 +904,7 @@
/>
</li>
</ul>
<ul v-for="(value, key) in response.headers" :key="key">
<ul v-for="(value, key) in response.headers" :key="key" class="response-headers">
<li>
<label :for="key">{{ key }}</label>
<input :id="key" :value="value" :name="key" readonly />