This commit is contained in:
Dario Chiappetta
2015-08-26 22:57:28 +02:00
2 changed files with 2 additions and 4 deletions

View File

@@ -276,12 +276,12 @@ Clipperz.PM.UI.Components.Cards.ViewClass = React.createClass({
if (this.props['loading'] == true) {
result = this.renderLoading();
} else if (this.props['label']) {
} else if (this.props['_reference']) {
result = this.renderCard();
} else {
result = this.renderEmpty();
}
return result;
},