Skip to content

Commit 4682ba7

Browse files
committed
Updated to display grid even when no items are present
1 parent 2096002 commit 4682ba7

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

js/bundle.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -614,11 +614,6 @@ var MainApp = (function (_Component) {
614614
value: function render() {
615615
var _this = this;
616616

617-
// If we don't have config items, we shouldn't display the grid -- display a welcome message
618-
if (this.state.configItems.length == 0) {
619-
return null;
620-
}
621-
622617
var dataList = this.state.configItems.dataList;
623618

624619
// Return the app HTML to render

js/components/MainApp.react.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,6 @@ class MainApp extends Component {
5151
}
5252

5353
render() {
54-
55-
// If we don't have config items, we shouldn't display the grid -- display a welcome message
56-
if(this.state.configItems.length == 0){
57-
return null;
58-
}
5954

6055
var {dataList} = this.state.configItems;
6156

0 commit comments

Comments
 (0)