Skip to content

Commit

Permalink
fix: change placeholder in search bar for all types #270
Browse files Browse the repository at this point in the history
  • Loading branch information
candicecz committed Jan 15, 2025
1 parent 313c8f1 commit f533545
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const TextInput: React.FC<TextInputProps> = ({
{/* Input field with suggestions matching the search term. */}
<PredictiveSearch
ariaLabel='Add'
placeholder='Search for datasets'
placeholder='Search for resources'
colorScheme={colorScheme}
size={size}
inputValue={stringInputValue}
Expand Down
4 changes: 2 additions & 2 deletions src/components/page-container/components/container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ export const PageContainer: React.FC<PageContainerProps> = ({
</Button>
</NextLink>
<SearchBarWithDropdown
ariaLabel='Search for datasets'
placeholder='Search for datasets'
ariaLabel='Search for resources'
placeholder='Search for resources'
size='md'
showSearchHistory
/>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ const Home: NextPage<{
>
<Flex w='100%' flexDirection='column' maxWidth='1000px'>
<SearchBarWithDropdown
placeholder='Search for datasets'
ariaLabel='Search for datasets'
placeholder='Search for resources'
ariaLabel='Search for resources'
size='md'
showOptionsMenu
showSearchHistory
Expand Down

0 comments on commit f533545

Please sign in to comment.