Skip to content

Commit 08650fc

Browse files
authored
fix(frontend): various improvements (#13)
1 parent 19de3a9 commit 08650fc

49 files changed

Lines changed: 1089 additions & 455 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"streetsidesoftware.code-spell-checker",
2323
"bradlc.vscode-tailwindcss",
2424
"foxundermoon.shell-format",
25-
"vitest.explorer"
25+
"vitest.explorer",
26+
"streetsidesoftware.code-spell-checker-italian"
2627
]
2728
}
2829
}

backend/.render-build-trigger

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# This file is used to force Docker service rebuilds in PR previews
33
# Modify LAST_UPDATE to trigger rebuilds
44

5-
LAST_UPDATE=2025-07-30T00:00:00Z
5+
LAST_UPDATE=2025-08-01T09:54:23Z
66

77
# Instructions:
88
# 1. To force rebuild of Docker services in a PR, update LAST_UPDATE
9-
# 2. Run: perl -i -pe "s/LAST_UPDATE=.*/LAST_UPDATE=$(date -u +%Y-%m-%dT%H:%M:%SZ)/" .render-build-trigger
9+
# 2. Run: perl -i -pe "s/LAST_UPDATE=2025-08-01T09:54:23Z
1010
# 2. Commit and push changes to trigger Docker rebuilds

backend/services/email/templates/welcome.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
<w:anchorlock/>
254254
<center>
255255
<![endif]-->
256-
<a href="{{.LoginURL}}" style="background-color: rgb(0, 105, 168); border-radius: 8px; color: #ffffff; display: inline-block; font-family: 'Poppins', Arial, sans-serif; font-size: 16px; font-weight: 600; line-height: 56px; text-align: center; text-decoration: none; width: 300px; -webkit-text-size-adjust: none;">➡️ Login and change password</a>
256+
<a href="{{.LoginURL}}" style="background-color: rgb(0, 105, 168); border-radius: 8px; color: #ffffff; display: inline-block; font-family: 'Poppins', Arial, sans-serif; font-size: 16px; font-weight: 600; line-height: 56px; text-align: center; text-decoration: none; width: 300px; -webkit-text-size-adjust: none;">➡️ Login and Change password</a>
257257
<!--[if mso]>
258258
</center>
259259
</v:roundrect>

collect/.render-build-trigger

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# This file is used to force Docker service rebuilds in PR previews
33
# Modify LAST_UPDATE to trigger rebuilds
44

5-
LAST_UPDATE=2025-07-30T00:00:00Z
5+
LAST_UPDATE=2025-08-01T09:54:23Z
66

77
# Instructions:
88
# 1. To force rebuild of Docker services in a PR, update LAST_UPDATE
9-
# 2. Run: perl -i -pe "s/LAST_UPDATE=.*/LAST_UPDATE=$(date -u +%Y-%m-%dT%H:%M:%SZ)/" .render-build-trigger
9+
# 2. Run: perl -i -pe "s/LAST_UPDATE=2025-08-01T09:54:23Z
1010
# 2. Commit and push changes to trigger Docker rebuilds

frontend/.render-build-trigger

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# This file is used to force Docker service rebuilds in PR previews
33
# Modify LAST_UPDATE to trigger rebuilds
44

5-
LAST_UPDATE=2025-07-30T00:00:00Z
5+
LAST_UPDATE=2025-08-01T09:54:23Z
66

77
# Instructions:
88
# 1. To force rebuild of Docker services in a PR, update LAST_UPDATE
9-
# 2. Run: perl -i -pe "s/LAST_UPDATE=.*/LAST_UPDATE=$(date -u +%Y-%m-%dT%H:%M:%SZ)/" .render-build-trigger
9+
# 2. Run: perl -i -pe "s/LAST_UPDATE=2025-08-01T09:54:23Z
1010
# 2. Commit and push changes to trigger Docker rebuilds

frontend/package-lock.json

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"format": "prettier --list-different src/",
1616
"format-fix": "prettier --write src/",
1717
"test": "vitest",
18-
"pre-commit": "npm run format && npm run lint && npm run type-check && npm run test"
18+
"pre-commit": "npm run format && npm run lint && npm run type-check && npm run test -- --run"
1919
},
2020
"dependencies": {
2121
"@fontsource/poppins": "^5.2.6",
@@ -36,7 +36,7 @@
3636
"uid": "^2.0.2",
3737
"valibot": "^1.1.0",
3838
"vue": "^3.5.13",
39-
"vue-i18n": "^11.1.6",
39+
"vue-i18n": "^11.1.11",
4040
"vue-router": "^4.5.0"
4141
},
4242
"devDependencies": {

0 commit comments

Comments
 (0)