We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2363f98 commit d2426e4Copy full SHA for d2426e4
2 files changed
.github/workflows/workflow.yaml
@@ -59,4 +59,9 @@ jobs:
59
issue_number,
60
state: 'open'
61
});
62
-
+
63
+ - name: Show repo status before commit
64
+ run: |
65
+ git status
66
+ git diff
67
script.js
@@ -1,7 +1,7 @@
1
// Load library data
2
let libraryData = [];
3
let currentPage = 1;
4
-const booksPerPage = 9; // Display 9 books per page for a card layout
+const booksPerPage = 20; // Display 20 books per page for a card layout
5
6
fetch('data/library.json') // Update the path to include the "data" folder
7
.then(response => response.json())
0 commit comments