fix: hide photoswipe alt text when its empty

This commit is contained in:
ShittyKopper 2023-12-27 13:19:29 +03:00
parent 6242f37111
commit 5d746d4ee5

View file

@ -172,6 +172,12 @@ onMounted(() => {
el.appendChild(textBox); el.appendChild(textBox);
pwsp.on('change', (a) => { pwsp.on('change', (a) => {
if (pwsp.currSlide?.data.comment) {
textBox.style.display = '';
} else {
textBox.style.display = 'none';
}
textBox.textContent = pwsp.currSlide.data.comment; textBox.textContent = pwsp.currSlide.data.comment;
}); });
}, },