fixed incorrect rendering of captions in images

This commit is contained in:
suroh 2023-12-05 11:09:54 +01:00
parent 8eb9ab9477
commit 062cc98516
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ export class App extends LitElement {
if (detail.details) {
const div = document.createElement('div')
const p = document.createElement('p')
p.textContent = details
p.innerHTML = details
div.appendChild(p)
this.dialogEl.appendChild(div)
}