-
Notifications
You must be signed in to change notification settings - Fork 7
12 bugs fixed #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Shathulan_Kaneshapillai (shathulan)
wants to merge
12
commits into
codezelaca:main
Choose a base branch
from
shathulan:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+26
−18
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
32f5110
Fixed bug #1: the form submit listener now calls handleAddCheck corre…
shathulan f6cd1aa
Fixed bug #3: the add-check flow now blocks submission when either ti…
shathulan 202b4e7
Fixed bug #4: the search now checks title, category, priority, statu…
shathulan abe39a7
Bug #5 is fixed in app.js: the status filter now compares check.sta…
shathulan 9e5860d
Fixed bug #6: status classes now slugify multi-word values like In Pr…
shathulan dc99828
Fixed bug #7: updateMetrics() now counts check.status === "Fixed" in …
shathulan 82b9288
Fixed bug #8: updateMetrics() now counts items due within 7 days in a…
shathulan b6feae1
Fixed bug #9: handleTableClick() now matches the delete button's data…
shathulan ce47cb2
Fixed bug #10: handleStatusChange() now saves changes, reapplies filt…
shathulan 031ac8e
Fixed bug #11: resetDemoData() now fetches the correct JSON file in a…
shathulan 06948f2
Fixed bug #12: exportCsv() now exports check.title instead of check.n…
shathulan f9d316a
fix:final version all done and dusted
shathulan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: codezelaca/fs-se-debugging-bugs
Length of output: 690
🏁 Script executed:
# First, check if js/app.js exists and its size wc -l js/app.jsRepository: codezelaca/fs-se-debugging-bugs
Length of output: 89
🏁 Script executed:
Repository: codezelaca/fs-se-debugging-bugs
Length of output: 473
🏁 Script executed:
Repository: codezelaca/fs-se-debugging-bugs
Length of output: 521
🏁 Script executed:
Repository: codezelaca/fs-se-debugging-bugs
Length of output: 776
Parse
dueDateas a local calendar date before computing "due soon".The
daysUntil()function parsesYYYY-MM-DDstrings withnew Date(dateValue), which treats them as UTC. In US browsers this shifts the date to the previous local calendar day. A check due on May 9 renders as May 8 and can fall out of the0..7window late in the local day, making the due-soon count incorrect. Parse dates into local dates usingnew Date(year, month - 1, day)and alignformatDate()to use the same helper.Suggested fix
🤖 Prompt for AI Agents