Skip to content

Commit d0b99ff

Browse files
committed
fix: sync server with sso project (2025-04-23-23-59)
1 parent 64df6b2 commit d0b99ff

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

apps/client-e2e/src/ru-validation-with-store-lang-in-db.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,13 @@ test.describe('Validation with store lang in db (ru)', () => {
123123
});
124124

125125
test('change lang to en in localStorage', async () => {
126-
await page.evaluate(() => localStorage.setItem('activeLang', 'en'));
126+
await page.evaluate(() => localStorage.setItem('activeUserLang', 'en'));
127127

128-
const activeLang = await page.evaluate(() =>
129-
localStorage.getItem('activeLang')
128+
const activeUserLang = await page.evaluate(() =>
129+
localStorage.getItem('activeUserLang')
130130
);
131131

132-
expect(activeLang).toEqual('en');
132+
expect(activeUserLang).toEqual('en');
133133
});
134134
/*
135135
xtest('should catch error on create new webhook', async () => {

libs/core/webhook-angular/src/lib/services/webhook-form.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export class WebhookFormService {
149149
},
150150
props: {
151151
label: this.translocoService.translate(`Example of payload`),
152-
placeholder: 'headers',
152+
placeholder: 'example of payload',
153153
readonly: true,
154154
},
155155
templateOptions: {

0 commit comments

Comments
 (0)