Skip to content
Snippets Groups Projects
Commit f07a901c authored by Lewis Liu's avatar Lewis Liu
Browse files

Removed debugging statements for revisions

parent fd9b75e7
Branches
Tags
No related merge requests found
......@@ -92,7 +92,7 @@ export default class RevisionHistoryApp extends Component {
</div>
</div>
<LoadingAndErrorWrapper loading={!error && loading} error={error}>
{ () => {console.log(revisions);console.log(tables); console.log(entity); return Object.keys(revisions).length > 0 && tables[entity.table_id] ?
{ () => Object.keys(revisions).length > 0 && tables[entity.table_id] ?
<div className="wrapper wrapper--trim">
{Object.values(revisions)
.map(revision => revision && revision.diff ?
......@@ -111,7 +111,7 @@ export default class RevisionHistoryApp extends Component {
:
<div className={S.empty}>
<EmptyState message={empty.message} icon={empty.icon} />
</div>}
</div>
}
</LoadingAndErrorWrapper>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment