chore(lint): fix

This commit is contained in:
limes 2026-03-05 22:51:07 +01:00
parent d8ba94a8d6
commit 43a43637a6

View File

@ -384,8 +384,9 @@ function openTab(e, tabType) {
document
.querySelectorAll('#saveTab img[data-src]')
.forEach((e) => {
if (e.getAttribute('data-src') !== e.src)
if (e.getAttribute('data-src') !== e.src) {
e.setAttribute('src', e.getAttribute('data-src'));
}
});
}