Merge branch 'master' into wsockdev

This commit is contained in:
Liyas Thomas
2020-04-30 14:46:26 +05:30
committed by GitHub
3 changed files with 7 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

@@ -341,6 +341,7 @@ export default {
getDoc() {
try {
this.items = JSON.parse(this.collectionJSON)
this.$toast.clear()
this.$toast.info(this.$t("docs_generated"), {
icon: "book",
})

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 />