Skip to content

testing pull request #17

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
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ Rainbucket is hosted on a Digital Ocean VPS, ensuring that the application is no

Rainbucket stands as a testament to the power of simplicity in software tools. By mirroring the functionality of Request Bin and extending it with a modern technology stack, Rainbucket offers an indispensable resource for anyone looking to inspect and debug HTTP requests. Try Rainbucket today and streamline your development and testing workflows.

Built with love by Allen Lee, Rachele Lang, Tess Lockey, and Weston Ludeke
Built with love by Allen Lee, Rachele Lang, Tess Lockey, and Weston Ludeke!!!
2 changes: 1 addition & 1 deletion frontend/utils/timeFormatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function timeExtract(timestamp) {
const d = new Date(timestamp);
return {
year: String(d.getFullYear()).slice(2),
month: String(d.getMonth()).padStart(2, "0"),
month: String(d.getMonth() + 1).padStart(2, "0"),
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Testing comment right here

day: String(d.getDate()).padStart(2, "0"),
hour: (d.getHours() % 12) ? d.getHours() : 12,
minute: d.getMinutes(),
Expand Down