Skip to content

Commit

Permalink
7-12 hotfixes (#794)
Browse files Browse the repository at this point in the history
  • Loading branch information
levenecav authored Dec 7, 2018
1 parent e7a4ade commit 34d133b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
4 changes: 0 additions & 4 deletions src/pages/Manage/Store/Storages/Storages.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
.container {
background-color: $color_white;
flex: 1 0 auto;
margin-top: 0;
@media (min-width: $md) {
margin-top: 2rem;
}
}

.subtitle {
Expand Down
5 changes: 3 additions & 2 deletions src/pages/Start/Goods.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,17 @@ class Goods extends Component<PropsType, StateType> {
</div>
<div styleName="loadMoreButton">
{loadedPagesCount < 3 && (
<Button onClick={this.loadMore} load>
<Button big load onClick={this.loadMore}>
Load more
</Button>
)}
{loadedPagesCount === 3 && (
<Button
big
load
onClick={() => {
this.props.router.push(this.props.seeAllUrl);
}}
load
>
See all
</Button>
Expand Down
2 changes: 1 addition & 1 deletion src/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ const routes = (
isPriority
}
}
baseProduct(id: $productID, visibility: "active") {
baseProduct(id: $productID) {
...Product_baseProduct
}
}
Expand Down

0 comments on commit 34d133b

Please sign in to comment.