Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducica committed Oct 23, 2023
1 parent b8c95e5 commit c0ba39a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,8 @@ export const SearchAppResultOptions = ({ sortOptions, layoutOptions }) => {
return (
<Grid>
<Grid.Row verticalAlign="middle">
{/* <Grid.Column floated="right" textAlign="left" width={5}>
<Grid.Column textAlign="right" floated="right" width={13}>
<ResultCountWithState />
</Grid.Column> */}
<Grid.Column textAlign="right" floated="right" width={16}>
<ResultCountWithState />

{sortOptions && (
<Overridable id={buildUID("SearchApp.sort")} options={sortOptions}>
<SearchAppSort />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const SearchAppResultsComponent = ({
{multipleLayouts ? <ResultsMultiLayout /> : listOrGridView}
</Grid.Column>
</Grid.Row>
{total >= 10 && (
{total > 10 && (
<Grid.Row verticalAlign="middle">
<Grid.Column className="computer tablet only" width={4}></Grid.Column>
<Grid.Column
Expand Down

0 comments on commit c0ba39a

Please sign in to comment.