Compare commits
2 Commits
ef9c37dcdd
...
409cbd437a
| Author | SHA1 | Date | |
|---|---|---|---|
| 409cbd437a | |||
| ac17c26c66 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -29,6 +29,8 @@ dist-ssr/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
__pycache__/
|
||||
*.pyc
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "checklist-frontend",
|
||||
"private": true,
|
||||
"version": "1.0.64",
|
||||
"version": "1.0.65",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
@@ -5209,7 +5209,7 @@ function ReportsTab({ user }) {
|
||||
<option value="">Todos los mecánicos</option>
|
||||
{mechanics.map(mechanic => (
|
||||
<option key={mechanic.id} value={mechanic.id}>
|
||||
{mechanic.full_name}
|
||||
{mechanic.full_name || mechanic.username} ({mechanic.role})
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user