Skip to content

Commit 169ffdd

Browse files
committed
Merge branch 'main' of github.com:processing/processing-website
2 parents 31edd53 + 31bae0c commit 169ffdd

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
type: string
1313
required: true
1414
make_release:
15-
description: 'Make a GitHub release with a referenze.zip after uploading the website'
15+
description: 'Make a GitHub release with a reference.zip after uploading the website'
1616
type: boolean
1717
required: true
1818
default: true

src/components/FilterBar.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ const FilterBar = ({
3030
value={searchTerm}
3131
onChange={onChange}
3232
onKeyPress={onKeyPress}
33+
spellCheck={false}
3334
/>
3435
{searchTerm && (
3536
<button className={css.clearButton} onClick={onClick} type="button">

src/components/SearchBar.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ const SearchBar = ({ className }) => {
4343
id: focused ? 'searchWithGoogle' : 'search'
4444
})}
4545
/>
46-
<button className={css.submit} onClick={search}>
46+
<button
47+
className={css.submit}
48+
onClick={search}
49+
aria-label={`Submit search`}>
4750
<SearchIcon height={30} width={30} />
4851
</button>
4952
</div>

0 commit comments

Comments
 (0)