Skip to content
Snippets Groups Projects
Commit dbf9f685 authored by Bereczki Sandor's avatar Bereczki Sandor
Browse files

Description label name change

parent bbac5279
No related branches found
No related tags found
No related merge requests found
import React, { Component } from 'react'; import React, { Component } from 'react';
import { Modal, Button, Icon, Checkbox, Form, TextArea, Header } from 'semantic-ui-react'; import { Modal, Button, Icon, Checkbox, Form, TextArea, Header } from 'semantic-ui-react';
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import { correctSolution, writeSolution, check, clearWrite } from '../../actions/homework'; import { correctSolution,
writeSolution,
check,
clearWrite,
getSolutions,
getDocuments } from '../../actions/homework';
class CorrectSolutionForm extends Component { class CorrectSolutionForm extends Component {
constructor(props) { constructor(props) {
...@@ -69,7 +74,7 @@ class CorrectSolutionForm extends Component { ...@@ -69,7 +74,7 @@ class CorrectSolutionForm extends Component {
checked={this.props.correction.accepted} checked={this.props.correction.accepted}
/> />
</Button> </Button>
<Header as='h5'>Megjegyzés:</Header> <Header as='h5'>A feladat megoldásának szöveges értékelése:</Header>
<Form> <Form>
<Form.Field <Form.Field
control={TextArea} control={TextArea}
...@@ -120,4 +125,6 @@ export default connect(mapStateToProps, { ...@@ -120,4 +125,6 @@ export default connect(mapStateToProps, {
writeSolution, writeSolution,
check, check,
clearWrite, clearWrite,
getSolutions,
getDocuments,
})(CorrectSolutionForm); })(CorrectSolutionForm);
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