chore(UI): update search placeholder (#53346)

This commit is contained in:
Ilenia
2024-02-14 19:36:59 +01:00
committed by GitHub
parent 08519749aa
commit 7cfcdff33c
2 changed files with 2 additions and 2 deletions

View File

@@ -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.",

View File

@@ -20,7 +20,7 @@ test.describe('Search', () => {
await expect(searchInput).toBeVisible();
await expect(searchInput).toHaveAttribute(
'placeholder',
'Search 9,000+ tutorials'
'Search 10,700+ tutorials'
);
}
});