Skip to content

Commit

Permalink
Merge branch 'master' into ordered-list-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asudoh authored Jan 21, 2020
2 parents f439469 + 00f87f8 commit 15a18cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion packages/react/src/components/Breadcrumb/Breadcrumb.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const Breadcrumb = ({
children,
className: customClassNameNav,
noTrailingSlash,
...rest
}) => {
const className = cx({
[`${prefix}--breadcrumb`]: true,
Expand All @@ -26,7 +27,8 @@ const Breadcrumb = ({
return (
<nav
className={customClassNameNav}
aria-label={ariaLabel ? ariaLabel : 'Breadcrumb'}>
aria-label={ariaLabel ? ariaLabel : 'Breadcrumb'}
{...rest}>
<ol className={className}>{children}</ol>
</nav>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/components/Pagination/Pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export default class Pagination extends Component {
<div className={`${prefix}--pagination__right`}>
{pageInputDisabled ? null : (
<Select
id={`${prefix}-pagination-select-${inputId + 2}`}
id={`${prefix}-pagination-select-${inputId}-right`}
className={`${prefix}--select__page-number`}
labelText={`Page number, of ${totalPages} pages`}
inline
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/components/Tabs/Tabs-story.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const TabContentRenderedOnlyWhenSelected = ({
...other
}) =>
!selected ? (
<div {...other} ciassName="bx--visually-hidden" />
<div {...other} className={`${prefix}--visually-hidden`} />
) : (
<div
{...other}
Expand Down

0 comments on commit 15a18cb

Please sign in to comment.