Skip to content

Commit

Permalink
fix: show all dashboards (#17399)
Browse files Browse the repository at this point in the history
  • Loading branch information
drdelambre authored Mar 24, 2020
1 parent 4d60f8e commit 40d3dd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export default class DashboardCards extends PureComponent<Props> {
const frame = this._frame.getBoundingClientRect()
const win = this._window.getBoundingClientRect()

if (frame.height == win.height) {
if (frame.height <= win.height) {
this.setState(
{
windowSize: this.state.windowSize + 1,
Expand Down

0 comments on commit 40d3dd8

Please sign in to comment.