fix: interval from different API

pull/3870/head
Acbox 5 months ago
parent e56b271d57
commit da480e2949

@ -7,10 +7,9 @@
<div class="namespace">N</div> {{ item.name }}
</div>
</div>
<br />
</div>
<br />
<div v-if="currentItem.some(item => item.type === 'function')">
<h2>Functions</h2>
<div v-for="item in currentItem">
@ -18,10 +17,9 @@
<div class="function">F</div> {{ item.name }}
</div>
</div>
<br />
</div>
<br />
<div v-if="currentItem.some(item => item.type === 'enum')">
<h2>Enumerations</h2>
<div v-for="item in currentItem">
@ -29,10 +27,9 @@
<div class="enum">E</div> {{ item.name }}
</div>
</div>
<br />
</div>
<br />
<div v-if="currentItem.some(item => item.type === 'class')">
<h2>Classes</h2>
<div v-for="item in currentItem">
@ -40,10 +37,9 @@
<div class="class">C</div> {{ item.name }}
</div>
</div>
<br />
</div>
<br />
<div v-if="currentItem.some(item => item.type === 'interface')">
<h2>Interfaces</h2>
<div v-for="item in currentItem">
@ -51,10 +47,9 @@
<div class="interface">I</div> {{ item.name }}
</div>
</div>
<br />
</div>
<br />
<div v-if="currentItem.some(item => item.type === 'variable')">
<h2>Variables</h2>
<div v-for="item in currentItem">
@ -62,10 +57,9 @@
<div class="variable">V</div> {{ item.name }}
</div>
</div>
<br />
</div>
<br />
<div v-if="currentItem.some(item => item.type === 'type')">
<h2>Types</h2>
<div v-for="item in currentItem">

Loading…
Cancel
Save