fix: 100% HTML preview area size (#1938)

This commit is contained in:
Iagor Moraes
2021-11-04 21:55:50 -03:00
committed by GitHub
parent 03ab6a208d
commit 9e4d7df7d0
3 changed files with 5 additions and 3 deletions

View File

@@ -6,6 +6,7 @@
:key="`lens-${index}`"
:label="$t(lens.lensName)"
:selected="index === 0"
class="flex flex-col flex-1"
>
<component :is="lens.renderer" :response="response" />
</SmartTab>
@@ -14,6 +15,7 @@
id="headers"
:label="$t('response.headers')"
:info="`${headerLength}`"
class="flex flex-col flex-1"
>
<LensesHeadersRenderer :headers="response.headers" />
</SmartTab>
@@ -26,6 +28,7 @@
? true
: false
"
class="flex flex-col flex-1"
>
<HttpTestResult />
</SmartTab>