From c2cf44852802cfc939d7c73eec6f43faa57fa36e Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Fri, 29 Mar 2024 19:57:23 +1100 Subject: [PATCH] For postman-like http client change default tab for response view to Browser Preview --- templates/dashboard/http_functions/client.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/dashboard/http_functions/client.html b/templates/dashboard/http_functions/client.html index b351103..b0d0848 100644 --- a/templates/dashboard/http_functions/client.html +++ b/templates/dashboard/http_functions/client.html @@ -82,7 +82,7 @@ show_refresh=False, show_link=False, show_edit_form=True, show_client=True, show this.responseHeaders = []; this.responseSize = 0; this.activeTab = 'Query Params'; - this.activeResponseTab = 'Body' + this.activeResponseTab = 'Browser Preview' this.headers = [{ key: 'Content-Type', value: 'application/json' }, { key: '', value: '' }]; this.queryParams = [{ key: '', value: '' }]; }, @@ -163,7 +163,7 @@ show_refresh=False, show_link=False, show_edit_form=True, show_client=True, show ]), this.response ? m("div.my-4.p-4.shadow.rounded-lg", [ m("div.flex.items-center.mb-4.justify-between", [ - m("ul.flex.border.border-gray-300.rounded-t-lg", [{ name: 'Body', count: null }, { name: 'Headers', count: this.responseHeaders.length }, { name: 'Browser Preview', count: null }].map(({ name, count }) => + m("ul.flex.border.border-gray-300.rounded-t-lg", [{ name: 'Browser Preview', count: null }, { name: 'Headers', count: this.responseHeaders.length }, { name: 'Body', count: null }].map(({ name, count }) => m("li.mr-3.py-2.px-4.border-orange-400.focus:outline-none.hover:text-orange-500.cursor-pointer", { class: this.activeResponseTab === name ? "border-b-2 text-orange-600" : "", onclick: () => this.activeResponseTab = name