Skip to content

Commit e70e960

Browse files
authored
client: improve feedZback guide (#728)
1 parent 5a8ed9b commit e70e960

File tree

64 files changed

+2183
-2601
lines changed

Some content is hidden

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

64 files changed

+2183
-2601
lines changed

client/angular.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
},
6666
{
6767
"type": "anyComponentStyle",
68-
"maximumWarning": "2.5kb",
69-
"maximumError": "4kb"
68+
"maximumWarning": "3kb",
69+
"maximumError": "5kb"
7070
}
7171
],
7272
"outputHashing": "all"
@@ -80,8 +80,8 @@
8080
},
8181
{
8282
"type": "anyComponentStyle",
83-
"maximumWarning": "2.5kb",
84-
"maximumError": "4kb"
83+
"maximumWarning": "3kb",
84+
"maximumError": "5kb"
8585
}
8686
],
8787
"outputHashing": "all",
@@ -101,8 +101,8 @@
101101
},
102102
{
103103
"type": "anyComponentStyle",
104-
"maximumWarning": "2.5kb",
105-
"maximumError": "4kb"
104+
"maximumWarning": "3kb",
105+
"maximumError": "5kb"
106106
}
107107
],
108108
"outputHashing": "all",

client/e2e/pages/give-requested-feedback.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class GiveRequestedFeedbackPage {
1919
'Feedback receiver should be filled in correctly',
2020
).toHaveValue(persona);
2121

22-
await this.page.getByText('Points positifs').fill(details.positive);
22+
await this.page.getByText('Points forts').fill(details.positive);
2323
await this.page.getByText("Axes d'améliorations").fill(details.negative);
2424
await this.page.getByText('Commentaire').fill(details.comment);
2525

client/e2e/pages/give-spontaneous-feedback.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class GiveSpontaneousFeedbackPage {
1717
async give(persona: Persona, details: Details) {
1818
await this.page.getByLabel('Email de votre collègue').fill(persona);
1919

20-
await this.page.getByText('Points positifs').fill(details.positive);
20+
await this.page.getByText('Points forts').fill(details.positive);
2121
await this.page.getByText("Axes d'améliorations").fill(details.negative);
2222
await this.page.getByText('Commentaire').fill(details.comment);
2323

0 commit comments

Comments
 (0)