Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/lib/components/ui/ScrollView/ScrollView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -212,13 +212,13 @@ export const ScrollView = (props) => {
customStartShadowStyle,
customEndShadowStyle,
)}
{...(id && { id })}
id={id}
>
<div className={styles.viewport} ref={scrollViewViewportEl}>
<div
className={styles.content}
ref={scrollViewContentEl}
{...(id && { id: `${id}__content` })}
id={id && `${id}__content`}
>
{children}
</div>
Expand All @@ -236,7 +236,7 @@ export const ScrollView = (props) => {
arrowsScrollStep,
)}
title={translations.previous}
{...(id && { id: `${id}__arrowPrevButton` })}
id={id && `${id}__arrowPrevButton`}
>
{customPrevArrow || (
<span className={styles.arrowIcon} aria-hidden />
Expand All @@ -252,7 +252,7 @@ export const ScrollView = (props) => {
arrowsScrollStep,
)}
title={translations.next}
{...(id && { id: `${id}__arrowNextButton` })}
id={id && `${id}__arrowNextButton`}
>
{customNextArrow || (
<span className={styles.arrowIcon} aria-hidden />
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/ui/Table/__tests__/Table.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ describe('rendering', () => {
});

describe('functionality', () => {
it('calls changeHandler() on Close button click', () => {
it('calls changeHandler() on sorting button click', () => {
const spy = sinon.spy();
const component = mount((
<Table
Expand Down
4 changes: 2 additions & 2 deletions src/lib/styles/settings/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $utilities: (
responsive: true,
property: display,
class: d,
values: (block, flex, inline, inline-flex, none),
values: (block, flex, inline, inline-block, inline-flex, none),
),
'align-items': (
responsive: true,
Expand All @@ -19,7 +19,7 @@ $utilities: (
responsive: true,
property: justify-content,
class: justify-content,
values: (start, end, center, space-between),
values: (start, flex-start, end, flex-end, center, space-between),
),
'margin-top': (
responsive: true,
Expand Down