Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleNeedham committed Nov 19, 2019
1 parent e72994e commit 26f8be3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@b2bfinance/tablo",
"version": "5.0.0-beta.0",
"version": "5.0.0-beta.1",
"description": "Display a list of products",
"sideEffects": false,
"main": "lib/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/FilterWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default ({ filter, onClose, dispatch }) => {
};

return (
<>
<React.Fragment>
<Grid
className={classes.filterWrapperHeader}
container
Expand Down Expand Up @@ -93,6 +93,6 @@ export default ({ filter, onClose, dispatch }) => {
</ListItem>
))}
</List>
</>
</React.Fragment>
);
};
4 changes: 2 additions & 2 deletions src/ProductList.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const ProductList = ({ products, limit, onMoreDetails, onApply, cta }) => {
}

return (
<>
<React.Fragment>
{products.slice(0, productCount).map((product, i) => (
<ProductWrapper
key={product.id || i}
Expand Down Expand Up @@ -73,7 +73,7 @@ const ProductList = ({ products, limit, onMoreDetails, onApply, cta }) => {
</Grid>
</Grid>
)}
</>
</React.Fragment>
);
};

Expand Down

0 comments on commit 26f8be3

Please sign in to comment.