Protocolbot
79774df456
fix: don't auto-fill source with @username when empty
Both frontend and backend were defaulting the source field to
@username when left empty. Now stores an empty string instead.
Frontend (app.js):
- saveProtocol: removed || '@' + currentUser.username fallback
- saveCollection: removed || '@' + currentUser.username fallback
Backend (api/index.php):
- Protocol create: ['source'] ?? '' instead of ?? ('@' . username)
- Collection create: ['source'] ?? '' instead of ?? ('@' . username)
2026-07-21 08:40:15 -06:00
..
2026-07-21 08:40:15 -06:00
2026-07-08 22:42:18 -06:00
2026-07-08 22:42:18 -06:00
2026-07-08 22:42:18 -06:00
2026-07-21 08:36:48 -06:00
2026-07-08 22:42:18 -06:00
2026-07-09 09:46:31 -06:00