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
1 changed files with 6 additions and 0 deletions

View File

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