Skip to content

Commit

Permalink
fix(renderer): view rendering incorrectly (departments)
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Jun 15, 2021
1 parent f196817 commit 18f9eca
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/client/containers/Departments/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class DepartmentsContainer extends React.Component {
</th>
</tr>
</thead>
<tbody className={'scrollable full-height'}>
<tbody className={'c91-fix scrollable full-height'}>
{this.props.departments &&
this.props.departments.map(department => {
const teams = department.get('teams')
Expand Down Expand Up @@ -215,7 +215,4 @@ const mapStateToProps = state => ({
departments: state.departmentsState.departments
})

export default connect(
mapStateToProps,
{ fetchDepartments, deleteDepartment, showModal }
)(DepartmentsContainer)
export default connect(mapStateToProps, { fetchDepartments, deleteDepartment, showModal })(DepartmentsContainer)

0 comments on commit 18f9eca

Please sign in to comment.