diff options
| author | Kainoa Kanter <44733677+ThatOneCalculator@users.noreply.github.com> | 2022-07-04 19:21:59 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-05 11:21:59 +0900 |
| commit | 1eb504a640ea65a0e9041a6bad3144bdf0de4614 (patch) | |
| tree | 5525bc63fbbf74ae3bdfa1e5854c052a0d936a1a /packages/client/src/components/code-core.vue | |
| parent | fix:typo 「有効する必要…」→「有効にする必要…」 (#8936) (diff) | |
| download | sharkey-1eb504a640ea65a0e9041a6bad3144bdf0de4614.tar.gz sharkey-1eb504a640ea65a0e9041a6bad3144bdf0de4614.tar.bz2 sharkey-1eb504a640ea65a0e9041a6bad3144bdf0de4614.zip | |
chore: fix client lint errors (#8934)
* Fix client lint
* Hide no-v-html
* Ignore banned type
* Update page-editor.vue
Diffstat (limited to 'packages/client/src/components/code-core.vue')
| -rw-r--r-- | packages/client/src/components/code-core.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/client/src/components/code-core.vue b/packages/client/src/components/code-core.vue index 65dee5cdae..a816f34807 100644 --- a/packages/client/src/components/code-core.vue +++ b/packages/client/src/components/code-core.vue @@ -1,3 +1,4 @@ +<!-- eslint-disable vue/no-v-html --> <template> <code v-if="inline" :class="`language-${prismLang}`" v-html="html"></code> <pre v-else :class="`language-${prismLang}`"><code :class="`language-${prismLang}`" v-html="html"></code></pre> |