Skip to content

Commit

Permalink
Merged branch 'v1.4.0' into feature/v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
einazare committed Sep 24, 2020
2 parents df0cba2 + 050c18e commit a8414fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
![Product Gif](https://raw.githubusercontent.com/creativetimofficial/public-assets/master/light-bootstrap-dashboard-react/light-bootstrap-dashboard-react.gif)


**[Light Bootstrap Dashboard React](https://demos.creative-tim.com/light-bootstrap-dashboard-react/#/?ref=lbdr-readme)** is an admin dashboard template designed to be beautiful and simple. It is built on top of [React Bootstrap](https://5c507d49471426000887a6a7--react-bootstrap.netlify.com/), using [Light Bootstrap Dashboard](https://www.creative-tim.com/product/light-bootstrap?ref=lbdr-readme) and it is fully responsive. It comes with a big collections of elements that will offer you multiple possibilities to create the app that best fits your needs. It can be used to create admin panels, project management systems, web applications backend, CMS or CRM.
**[Light Bootstrap Dashboard React](https://demos.creative-tim.com/light-bootstrap-dashboard-react/#/?ref=lbdr-readme)** is an admin dashboard template designed to be beautiful and simple. It is built on top of [React Bootstrap](https://5c507d49471426000887a6a7--react-bootstrap.netlify.com/), using [Light Bootstrap Dashboard](https://www.creative-tim.com/product/light-bootstrap-dashboard?ref=lbdr-readme) and it is fully responsive. It comes with a big collections of elements that will offer you multiple possibilities to create the app that best fits your needs. It can be used to create admin panels, project management systems, web applications backend, CMS or CRM.

The product represents a big suite of front-end developer tools that can help you jump start your project. We have created it thinking about things you actually need in a dashboard. Light Bootstrap Dashboard React contains multiple handpicked and optimized plugins. Everything is designed to fit with one another. As you will be able to see, the dashboard you can access on Creative Tim is a customization of this product.

Expand Down
2 changes: 1 addition & 1 deletion src/assets/sass/lbd/_navbars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
}

&.fixed{
width: calc(100% - $sidebar-width);
width: calc(100% - #{$sidebar-width});
right: 0;
left: auto;
border-radius: 0;
Expand Down
3 changes: 3 additions & 0 deletions src/components/CustomCheckbox/CustomCheckbox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ class CustomCheckbox extends Component {
};
this.handleClick = this.handleClick.bind(this);
}
componentWillReceiveProps(newProps){
this.setState({ is_checked: newProps.isChecked ? true : false })
}
handleClick() {
this.setState({ is_checked: !this.state.is_checked });
}
Expand Down

0 comments on commit a8414fd

Please # to comment.