Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tiberiuichim committed Dec 13, 2024
1 parent 1bb1aec commit f749bae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions searchlib/components/SearchView/FilterAsideContentView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,16 @@ export const FilterAsideContentView = (props) => {
<Grid.Column>
<ResultsPerPageSelector />
</Grid.Column>
<Grid.Column textAlign="right">
<DownloadButton appConfig={appConfig} />
</Grid.Column>
<Grid.Column textAlign="right"></Grid.Column>
</Grid>
<Grid centered>
<Grid.Column textAlign="center">
<div className="prev-next-paging">
{!!showPaging && <Paging />}
</div>
<div>
<DownloadButton appConfig={appConfig} />
</div>
</Grid.Column>
</Grid>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/SearchBlock/BlockContainer/NewBlockAddButton.test.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ describe('NewBlockAddButton', () => {
beforeEach(() => {
jest.clearAllMocks();
store = mockStore({
userSession: { token: '1234' },
intl: {
locale: 'en',
formatMessage: () => 'Select layout',
Expand Down

0 comments on commit f749bae

Please sign in to comment.