Skip to content

Commit 8a4af18

Browse files
committed
fix: Use single quotes for innerHTML assignment to avoid template issues
1 parent 5b4cdd6 commit 8a4af18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hugo-site/themes/freenet/layouts/shortcodes/decentralized-services-issues.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
container.innerHTML = '';
1111

1212
if (issues.length === 0) {
13-
container.innerHTML = `<p>No open issues found with the "A-decentralized-services" label.</p>`;
13+
container.innerHTML = '<p>No open issues found with the "A-decentralized-services" label.</p>';
1414
return;
1515
}
1616

0 commit comments

Comments
 (0)