fix(MicronEditorPage): disable and enable eslint rule for v-html usage
All checks were successful
CI / build-frontend (push) Successful in 9m33s
CI / lint (push) Successful in 9m35s

This commit is contained in:
2026-01-02 09:40:02 -06:00
parent 0b5c8e4e68
commit 6ecd46dcec

View File

@@ -51,11 +51,13 @@
isMobileView && showEditor ? 'hidden' : '', isMobileView && showEditor ? 'hidden' : '',
]" ]"
> >
<!-- eslint-disable vue/no-v-html -->
<div <div
ref="previewRef" ref="previewRef"
class="flex-1 overflow-auto text-zinc-100 p-4 font-mono text-sm whitespace-pre-wrap break-words nodeContainer" class="flex-1 overflow-auto text-zinc-100 p-4 font-mono text-sm whitespace-pre-wrap break-words nodeContainer"
v-html="renderedContent" v-html="renderedContent"
></div> ></div>
<!-- eslint-enable vue/no-v-html -->
</div> </div>
</div> </div>
</div> </div>