fix(trips): default to 7-day window when dates are omitted on creation

- No dates → tomorrow to tomorrow+7d
- Start only → end = start+7d
- End only → start = end-7d
- Both provided → unchanged

fix(ci): include client/package-lock.json in version bump commit
This commit is contained in:
jubnl
2026-04-03 23:58:15 +02:00
parent c056401000
commit 93c0d6fe78
2 changed files with 20 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ jobs:
# Commit and tag
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add server/package.json server/package-lock.json client/package.json
git add server/package.json server/package-lock.json client/package.json client/package-lock.json
git commit -m "chore: bump version to $NEW_VERSION [skip ci]"
git tag "v$NEW_VERSION"
git push origin main --follow-tags