Add door unlock lock time column in incidents table #65

Merged
bilal.catic merged 3 commits from add-door-unlock-lock-time-column-in-incidents-table into master 2019-11-20 13:50:58 +01:00
Showing only changes of commit eff96f9e5e - Show all commits

View File

@@ -76,6 +76,7 @@ class SingleMapping extends Component {
}; };
render() { render() {
try {
const {singleMapping: {officeSlug, resourceSlug}} = this.props; const {singleMapping: {officeSlug, resourceSlug}} = this.props;
const {officeId, resourceId, officeOptions, allResourceOptions, pendingMappings} = this.props; const {officeId, resourceId, officeOptions, allResourceOptions, pendingMappings} = this.props;
const {showDeletePrompt, newOfficeId, newResourceId} = this.state; const {showDeletePrompt, newOfficeId, newResourceId} = this.state;
@@ -137,6 +138,9 @@ class SingleMapping extends Component {
</Table.Cell> </Table.Cell>
</Table.Row> </Table.Row>
); );
}catch (e) {
return null;
}
} }
} }