Add whitespace for section edit buttons

This commit is contained in:
2026-04-21 21:28:19 +02:00
parent e8992235d4
commit 7c0d856081
+2 -1
View File
@@ -10,7 +10,8 @@
var a = document.createElement('a');
a.href = '?edit&section=' + (i + 1);
a.className = 'btn btn-small';
a.textContent = 'edit';
a.textContent = 'edit';
h.appendChild(document.createTextNode(' '))
h.appendChild(a);
});
}());