Skip to content

Commit e875e07

Browse files
author
Manu
committed
- Solved gh issues
1 parent b15899d commit e875e07

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@
1717
- Changes caused by running [the prettier command](https://prettier.io/docs/en/install.html) for *.jsx*, *.js*, *.html* and *.css* files
1818
- Changed our buggy routing system, now it should work flawlessly, for more info, please refer to our [live docs here](https://demos.creative-tim.com/light-bootstrap-dashboard-react/#/documentation/routing-system)
1919
- Solved
20-
-
20+
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/48
21+
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/47
22+
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/34
23+
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/30
24+
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/19
25+
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/17
26+
- https://github.com/creativetimofficial/light-bootstrap-dashboard-react/issues/15
2127
- Removed `.env` file and replaced it with `jsconfig.json`
2228
- Small bug fixes
2329
### Removed dependencies/components

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> <!DOCTYPE html>
1+
<!DOCTYPE html>
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />

src/components/FormInputs/FormInputs.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class FormInputs extends Component {
1616
for (var i = 0; i < this.props.ncols.length; i++) {
1717
row.push(
1818
<div key={i} className={this.props.ncols[i]}>
19-
<FieldGroup {...this.props.proprieties[i]} />
19+
<FieldGroup {...this.props.properties[i]} />
2020
</div>
2121
);
2222
}

src/components/Sidebar/Sidebar.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { NavLink } from "react-router-dom";
33

44
import AdminNavbarLinks from "../Navbars/AdminNavbarLinks.jsx";
55

6-
import imagine from "assets/img/sidebar-3.jpg";
76
import logo from "assets/img/reactlogo.png";
87

98
class Sidebar extends Component {

src/views/UserProfile.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class UserProfile extends Component {
2828
<form>
2929
<FormInputs
3030
ncols={["col-md-5", "col-md-3", "col-md-4"]}
31-
proprieties={[
31+
properties={[
3232
{
3333
label: "Company (disabled)",
3434
type: "text",

0 commit comments

Comments
 (0)