fix variable name is MkMediaList

This commit is contained in:
dakkar 2024-08-06 20:28:50 +01:00
parent 4c409dd6c6
commit 8a37ed668e
1 changed files with 3 additions and 3 deletions

View File

@ -178,14 +178,14 @@ onMounted(() => {
textBox.className = 'pswp__alt-text _acrylic'; textBox.className = 'pswp__alt-text _acrylic';
el.appendChild(textBox); el.appendChild(textBox);
pwsp.on('change', () => { pswp.on('change', () => {
if (pwsp.currSlide?.data.comment) { if (pswp.currSlide?.data.comment) {
textBox.style.display = ''; textBox.style.display = '';
} else { } else {
textBox.style.display = 'none'; textBox.style.display = 'none';
} }
textBox.textContent = pwsp.currSlide?.data.comment; textBox.textContent = pswp.currSlide?.data.comment;
}); });
}, },
}); });