Skip to content

Commit 9474239

Browse files
committed
Fix: enable page jump to given number page
1 parent 6545213 commit 9474239

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/popup/handler/pageJumpHandler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const jumpToSchedulePage = (event) => {
5353
}
5454
input1DOM.classList.remove("is-invalid");
5555
if (page === store.scheduledPage) return;
56-
update_schedule_table_content(store.reviewScheduledProblems, page);
56+
renderScheduledTableContent(store.reviewScheduledProblems, page);
5757
setRecordOperationHandlers();
5858
}
5959

src/popup/script/loadGithubStar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function addStaticButton(container) {
5252
container.innerHTML = `
5353
<a href="https://github.com/xiaohajiayou/Leetcode-Mastery-Scheduler"
5454
target="_blank"
55-
style="text-decoration: none; display: inline-block;">
55+
style="text-decoration: none; display: inline-block; margin-right: 15px;">
5656
<img alt="GitHub stars"
5757
src="https://img.shields.io/github/stars/xiaohajiayou/Leetcode-Mastery-Scheduler?style=social"
5858
height="20"

0 commit comments

Comments
 (0)