Skip to content

Commit

Permalink
Fix card shrink in Catalog (#1650)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Martinez Gotor authored Apr 13, 2020
1 parent ac3f862 commit aeccc10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dashboard/src/components/Catalog/Catalog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class Catalog extends React.Component<ICatalogProps, ICatalogState> {
</div>
</div>
)}
<div className={this.shouldRenderOperators() ? "col-10" : ""}>
<div className={this.shouldRenderOperators() ? "col-10" : "col-12"}>
<CardGrid>{items}</CardGrid>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ exports[`renderization when charts available should render the list of charts 1`
className="row"
>
<div
className=""
className="col-12"
>
<CardGrid>
<CatalogItem
Expand Down Expand Up @@ -94,7 +94,7 @@ exports[`renderization when fetching apps loading spinner matches the snapshot 1
className="row"
>
<div
className=""
className="col-12"
>
<CardGrid />
</div>
Expand Down

0 comments on commit aeccc10

Please sign in to comment.