💄 Moved response body up, near to response status

This commit is contained in:
Liyas Thomas
2020-05-03 15:49:38 +05:30
parent ae72c5a8fe
commit 0fc47e07d4

View File

@@ -904,12 +904,6 @@
/>
</li>
</ul>
<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 />
</li>
</ul>
<ul v-if="response.body">
<li>
<div class="flex-wrap">
@@ -981,6 +975,12 @@
</div>
</li>
</ul>
<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 />
</li>
</ul>
</pw-section>
</div>