Skip to content

Commit

Permalink
New Contributer blurb (Alex Manzo) (#1283)
Browse files Browse the repository at this point in the history
* added aria label

* added alex manzo contributor blurb

* updated apostrophes in blurbs

* Updated ariaLable on locale input

* fixed linting error

* Update blurbs.json
  • Loading branch information
alexmanzo authored Nov 25, 2018
1 parent 9e9de24 commit 9d055e2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 13 deletions.
Binary file added app/assets/images/contributors/alex_manzo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 10 additions & 12 deletions client/app/widgets/ToggleLocale/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,15 @@ const onChange = (e: SyntheticEvent<HTMLInputElement>) => {
export const ToggleLocale = (props: Props) => {
const { locale, locales } = props;
return (
<div aria-label={I18n.t('language')}>
<Input
id="locale"
type="select"
name="locale"
ariaLabel={I18n.t('language')}
value={locale}
options={options(locales)}
onChange={onChange}
small
/>
</div>
<Input
id="locale"
type="select"
name="locale"
ariaLabel={I18n.t('language')}
value={locale}
options={options(locales)}
onChange={onChange}
small
/>
);
};
11 changes: 10 additions & 1 deletion doc/pages/blurbs.json
Original file line number Diff line number Diff line change
Expand Up @@ -369,5 +369,14 @@
"link_name": "csumm",
"link": "https://github.com/csumm",
"social": "github"
}
},
{
"name": "Alex Manzo",
"image": "/assets/contributors/alex_manzo.jpg",
"profile": "I'm a sports video producer turned web developer. By day I work on a government contract, and in my spare time I like to work on an array of side projects. Contributing to if me is my first foray into open source, and I'm excited to contribute as much as I can! I have done a lot of work on my own mental health over the past year. I know just how difficult different mental health challenges can be. I was so excited to find if me since it aligns so much with what I have been working on personally.",
"location": "Durham, NC",
"link_name": "alexmanzo",
"link": "https://github.com/alexmanzo",
"social": "github"
}
]

0 comments on commit 9d055e2

Please sign in to comment.