fix‼️
All checks were successful
ci / ci (22, debian-trixie) (push) Successful in 32s

This commit is contained in:
kittentm 2026-07-20 22:56:06 +02:00
commit 303b96d8e7
Signed by: kitten
GPG key ID: 394B4EABE4405A83

View file

@ -4,7 +4,8 @@ import { ref, onMounted, watch } from 'vue'
const { t } = useLocale()
const parsedHtml = ref('')
let markedParser: { parse: (text: string) => string | Promise<string>, use: (plugin: unknown) => void } | null = null
// eslint-disable-next-line @typescript-eslint/no-explicit-any
let markedParser: any = null
const baseRules = ref<Array<{ id: string, name: string }>>([])
const gameRules = ref<Array<{ id: string, name: string, version: string }>>([])
@ -197,14 +198,15 @@ watch(selectedCategory, (newId) => {
<div class="panel-body">
<div
v-if="isDocLoading"
v-show="isDocLoading"
class="loader-container"
>
<div class="spinner" />
<p>{{ t.policies?.loading }}</p>
</div>
<!-- eslint-disable-next-line vue/no-v-html -->
<div
v-else
v-show="!isDocLoading"
class="markdown-body"
v-html="parsedHtml"
/>