From 7cfcdff33c189adc0534ea44bc99042e2ab0889d Mon Sep 17 00:00:00 2001 From: Ilenia <26656284+ilenia-magoni@users.noreply.github.com> Date: Wed, 14 Feb 2024 19:36:59 +0100 Subject: [PATCH] chore(UI): update search placeholder (#53346) --- client/i18n/locales/english/translations.json | 2 +- e2e/search.spec.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/i18n/locales/english/translations.json b/client/i18n/locales/english/translations.json index db35c513cb4..62bb2094ae8 100644 --- a/client/i18n/locales/english/translations.json +++ b/client/i18n/locales/english/translations.json @@ -642,7 +642,7 @@ }, "search": { "label": "Search", - "placeholder": "Search 9,000+ tutorials", + "placeholder": "Search 10,700+ tutorials", "see-results": "See all results for {{searchQuery}}", "no-tutorials": "No tutorials found", "try": "Looking for something? Try the search bar on this page.", diff --git a/e2e/search.spec.ts b/e2e/search.spec.ts index 965c72d9b50..c603e76c58a 100644 --- a/e2e/search.spec.ts +++ b/e2e/search.spec.ts @@ -20,7 +20,7 @@ test.describe('Search', () => { await expect(searchInput).toBeVisible(); await expect(searchInput).toHaveAttribute( 'placeholder', - 'Search 9,000+ tutorials' + 'Search 10,700+ tutorials' ); } });