Skip to content

Commit

Permalink
chore: remplace Status par Statut (#1832)
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudambro authored Jan 15, 2024
1 parent 2e33bc1 commit 79f4ea8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dashboard/src/recoil/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const allowedActionFieldsInHistory = [
{ name: 'urgent', label: 'Action urgente' },
{ name: 'completedAt', label: 'Faite le' },
{ name: 'dueAt', label: 'À faire le' },
{ name: 'status', label: 'Status' },
{ name: 'status', label: 'Statut' },
];

export const prepareActionForEncryption = (action, { checkRequiredFields = true } = {}) => {
Expand Down
2 changes: 1 addition & 1 deletion dashboard/src/recoil/consultations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const consultationsFieldsIncludingCustomFieldsSelector = selector({
{ name: 'teams', label: ':Equipe(s) en charge' },
{ name: 'completedAt', label: 'Faite le' },
{ name: 'dueAt', label: 'À faire le' },
{ name: 'status', label: 'Status' },
{ name: 'status', label: 'Statut' },
...flattenedCustomFieldsConsultations.map((f) => {
return {
name: f.name,
Expand Down
2 changes: 1 addition & 1 deletion e2e/actions_crud.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ test("Actions", async ({ page }) => {
await page.locator(`[data-test-id="Nom de l'action\\: \\"${action1Name}\\" ➔ \\"${action2Name}\\""]`).click();
await page.locator(`[data-test-id="Description\\: \\"\\" ➔ \\"plouf\\""]`).click();
await page.locator('[data-test-id="Action urgente\\: \\"\\" ➔ true"]').click();
await page.locator('[data-test-id="Status\\: \\"A FAIRE\\" ➔ \\"FAIT\\""]').click();
await page.locator('[data-test-id="Statut\\: \\"A FAIRE\\" ➔ \\"FAIT\\""]').click();

await page.getByText("Fermer").click();

Expand Down

0 comments on commit 79f4ea8

Please sign in to comment.