Minor cleanup of type.vue

This commit is contained in:
Andrew Bastin
2021-02-08 21:11:18 -05:00
parent e8e855a36c
commit d333a44e11

View File

@@ -33,7 +33,7 @@
</div>
<div v-if="isEnum">
<h5>{{ $t("values") }}</h5>
<div v-for="value in gqlType.getValues()" class="m-4" v-text="value.name" />
<div :key="value.name" v-for="value in gqlType.getValues()" class="m-4" v-text="value.name" />
</div>
</div>
</template>
@@ -71,8 +71,7 @@ export default {
return this.gqlType instanceof GraphQLEnumType
},
interfaces() {
let type = this.gqlType
return (type.getInterfaces && type.getInterfaces()) || []
return (this.gqlType.getInterfaces && this.gqlType.getInterfaces()) || []
},
children() {
return this.gqlTypes.filter(