Update DocApiTable.vue

pull/4931/head
tugcekucukoglu 2023-12-05 12:40:47 +03:00
parent 2838404b31
commit 8d2a4f0617
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@
<template v-else-if="k === 'options'">
<template v-for="val in v" :key="val.name">
<div class="doc-option-type-options-container">
{{ val.name }}: <span class="doc-option-type-options doc-option-type">{{ val.type === 'T' || val.type.includes('<T') ? 'any' : val.type }}</span>
{{ val.name }}: <span class="doc-option-type-options doc-option-type">{{ val.type === 'T' || val.type.includes(`"<T>"`) ? 'any' : val.type }}</span>
</div>
</template>
</template>