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