Commit code with double quotes instead of single quotes

This commit is contained in:
Dmitry Yankowski
2020-02-24 21:06:23 -05:00
parent 3bd7c00038
commit 48100ead55
74 changed files with 3184 additions and 3184 deletions

View File

@@ -20,7 +20,7 @@
</div>
<div class="field-deprecated" v-if="gqlField.isDeprecated">
{{ $t('deprecated') }}
{{ $t("deprecated") }}
</div>
</div>
</template>
@@ -50,7 +50,7 @@
</style>
<script>
import typelink from './typelink'
import typelink from "./typelink"
export default {
components: {
@@ -68,11 +68,11 @@ export default {
return (
acc +
`${arg.name}: ${arg.type.toString()}${
index !== this.gqlField.args.length - 1 ? ', ' : ''
index !== this.gqlField.args.length - 1 ? ", " : ""
}`
)
}, '')
const argsString = args.length > 0 ? `(${args})` : ''
}, "")
const argsString = args.length > 0 ? `(${args})` : ""
return `${this.gqlField.name}${argsString}: ${this.gqlField.type.toString()}`
},