feat: save api responses (#4382)

Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
Nivedin
2024-09-30 19:06:53 +05:30
committed by GitHub
parent fdf5bf34ed
commit 58857be650
84 changed files with 3080 additions and 321 deletions

View File

@@ -7,9 +7,9 @@
<icon-lucide-chevron-right class="flex flex-shrink-0" />
</template>
<span
v-if="request"
v-if="request && 'method' in request"
class="flex flex-shrink-0 truncate rounded-md border border-dividerDark px-1 text-tiny font-semibold"
:style="{ color: getMethodLabelColorClassOf(request) }"
:style="{ color: getMethodLabelColorClassOf(request.method) }"
>
{{ request.method.toUpperCase() }}
</span>