perf: even
This commit is contained in:
@@ -349,54 +349,50 @@
|
|||||||
v-for="field in filteredQueryFields"
|
v-for="field in filteredQueryFields"
|
||||||
:key="field.name"
|
:key="field.name"
|
||||||
>
|
>
|
||||||
<GraphqlField
|
<GraphqlField
|
||||||
:gql-field="field"
|
:gql-field="field"
|
||||||
:jump-type-callback="handleJumpToType"
|
:jump-type-callback="handleJumpToType"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</SmartTab>
|
</SmartTab>
|
||||||
|
|
||||||
<SmartTab
|
<SmartTab
|
||||||
v-if="mutationFields.length > 0"
|
v-if="mutationFields.length > 0"
|
||||||
:id="'mutations'"
|
:id="'mutations'"
|
||||||
:label="$t('mutations')"
|
:label="$t('mutations')"
|
||||||
>
|
|
||||||
<div
|
|
||||||
v-for="field in filteredMutationFields"
|
|
||||||
:key="field.name"
|
|
||||||
>
|
>
|
||||||
<GraphqlField
|
<div
|
||||||
:gql-field="field"
|
v-for="field in filteredMutationFields"
|
||||||
:jump-type-callback="handleJumpToType"
|
:key="field.name"
|
||||||
/>
|
>
|
||||||
</div>
|
<GraphqlField
|
||||||
</SmartTab>
|
:gql-field="field"
|
||||||
|
:jump-type-callback="handleJumpToType"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</SmartTab>
|
||||||
|
|
||||||
<SmartTab
|
<SmartTab
|
||||||
v-if="subscriptionFields.length > 0"
|
v-if="subscriptionFields.length > 0"
|
||||||
:id="'subscriptions'"
|
:id="'subscriptions'"
|
||||||
:label="$t('subscriptions')"
|
:label="$t('subscriptions')"
|
||||||
>
|
|
||||||
<div
|
|
||||||
v-for="field in filteredSubscriptionFields"
|
|
||||||
:key="field.name"
|
|
||||||
>
|
>
|
||||||
<GraphqlField
|
<div
|
||||||
:gql-field="field"
|
v-for="field in filteredSubscriptionFields"
|
||||||
:jump-type-callback="handleJumpToType"
|
:key="field.name"
|
||||||
/>
|
>
|
||||||
</div>
|
<GraphqlField
|
||||||
</SmartTab>
|
:gql-field="field"
|
||||||
|
:jump-type-callback="handleJumpToType"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</SmartTab>
|
||||||
|
|
||||||
<SmartTab
|
<SmartTab
|
||||||
v-if="graphqlTypes.length > 0"
|
v-if="graphqlTypes.length > 0"
|
||||||
:id="'types'"
|
:id="'types'"
|
||||||
ref="typesTab"
|
ref="typesTab"
|
||||||
:label="$t('types')"
|
:label="$t('types')"
|
||||||
>
|
|
||||||
<div
|
|
||||||
v-for="type in filteredGraphqlTypes"
|
|
||||||
:key="type.name"
|
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
v-for="type in filteredGraphqlTypes"
|
v-for="type in filteredGraphqlTypes"
|
||||||
|
|||||||
Reference in New Issue
Block a user