Skip to content

Commit

Permalink
fix(open-api): fix security schemes never rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
FreekVR committed Apr 23, 2024
1 parent 17ea752 commit 9d9d8b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<script setup lang="ts">
defineProps<{
label: string;
value: string;
value: string | number;
}>();
</script>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div v-if="resolvedSchemes?.length">
<div v-if="Object.keys(resolvedSchemes)?.length">
<ul>
<OpenApiSecurityScheme
v-for="(securityItem, name) in resolvedSchemes"
Expand Down

0 comments on commit 9d9d8b1

Please sign in to comment.