Skip to content
Snippets Groups Projects
Commit e41b9fea authored by Thomas Roos's avatar Thomas Roos
Browse files

Use only camelCase in frontend

parent 94b48608
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ const StudentPanelBlock = (props) => {
<span className={"panel-icon" + (props.selected ? " has-text-white" : "")}>
<i className="fa fa-user"></i>
</span>
{props.student.first_name + ' ' + props.student.last_name}
{props.student.firstName + ' ' + props.student.lastName}
</a>
<div className={"panel-block" + (props.selected ? " is-info" : " is-hidden")}
......@@ -84,8 +84,8 @@ class CheckStudents extends React.Component {
students = [
{
id: 0,
first_name: "",
last_name: "",
firstName: "",
lastName: "",
email: ""
}
];
......@@ -217,8 +217,8 @@ class CheckStudents extends React.Component {
minMatchCharLength: 1,
keys: [
"id",
"first_name",
"last_name"
"firstName",
"lastName"
]
};
var fuse = new Fuse(this.students, options);
......
......@@ -21,8 +21,8 @@ class Students(Resource):
return [
{
'id': s.id,
'first_name': s.first_name,
'last_name': s.last_name,
'firstName': s.first_name,
'lastName': s.last_name,
'email': s.email,
}
for s in Student.select()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment