Skip to content

Commit 9cba41f

Browse files
committed
fix button visibility
1 parent 8508754 commit 9cba41f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/changelog/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ const props = {
189189
const visible = filtered.filter((p) => p.style.display !== "none");
190190
const hidden = filtered.length - visible.length;
191191

192-
if (hidden >= 10) {
192+
if (hidden > 0) {
193193
button!.style.display = "";
194194
} else {
195195
button!.style.display = "none";

0 commit comments

Comments
 (0)