diff --git a/js/src/common/components/FieldSet.js b/js/src/common/components/FieldSet.js index 450034a19..9b829fbe0 100644 --- a/js/src/common/components/FieldSet.js +++ b/js/src/common/components/FieldSet.js @@ -11,11 +11,11 @@ import listItems from '../helpers/listItems'; * The children should be an array of items to show in the fieldset. */ export default class FieldSet extends Component { - view() { + view(vnode) { return ( -
- {this.props.label} - +
+ {this.attrs.label} +
); }