This commit is contained in:
2025-11-17 10:35:05 +01:00
3 changed files with 3873 additions and 229 deletions

4097
project/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -17,8 +17,11 @@
"react-router-dom": "^7.7.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"jest": "^30.1.1",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"vite": "^5.4.2"

View File

@@ -477,7 +477,7 @@ END:VEVENT`;
onChange={(e) => setEmployeeFilter(e.target.value)}
className="bg-transparent focus:outline-none text-sm text-gray-900"
>
<option value="">Sélectionner un collaborateur</option>
<option value="">Sélectionner un(e) collaborateur(rice)</option>
<option value="all">Tous</option>
{filters.employees?.map((name, i) => (
<option key={i} value={name}>{name}</option>