Skip to content
Merged
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
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,4 @@ Thumbs.db

# Other
Project.md
Makefile
backend/test-email.sh
Makefile
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ I wrote this app for my girlfriend because she was always forgetting her promise
## Get started
- If you want to try it quickly, see `DEPLOY.md` for Docker-based deployment instructions.

[![Docker Build and Push](https://github.com/Panonim/kept/actions/workflows/deploy.yml/badge.svg)](https://github.com/Panonim/kept/actions/workflows/deploy.yml)

## Contributing & support
- Bug reports and feature requests: open an issue.
- Happy to accept PRs — small, focused changes are easiest to review.
Expand Down
2 changes: 1 addition & 1 deletion backend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ require (
github.com/valyala/fasthttp v1.69.0 // indirect
golang.org/x/sys v0.40.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df // direct
)
2 changes: 1 addition & 1 deletion frontend/src/styles/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@ textarea {
.modal {
padding: 0; /* remove gap so sheet can reach device bottom */
align-items: flex-end;
justify-content: flex-end;
justify-content: center;
}

.modal-content {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/ui/manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export class UIManager {
const emailInput = document.getElementById('user-email');

// Update push notification status
if (Notification.permission === 'granted') {
if ('Notification' in window && Notification.permission === 'granted') {
enablePushBtn.textContent = '✓ Enabled';
enablePushBtn.classList.add('enabled');
enablePushBtn.disabled = true;
Expand Down
Loading