Merge pull request #263 from diklein/master

Show Less Choices should be Show Fewer Choices
This commit is contained in:
Brian Lovin 2019-06-19 20:15:44 -04:00 committed by GitHub
commit c99e2534a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,7 @@ export const Apps = ({ resource, handleAppsExpand }: Props) => {
aria-expanded={overflowExpanded}
aria-controls={`apps_${resource.id}`}
>
<Button type="button">Show {overflowExpanded ? "less" : "more"} choices</Button>
<Button type="button">Show {overflowExpanded ? "fewer" : "more"} choices</Button>
</ExpandContainer>
</React.Fragment>
)}