diff --git a/js/src/common/components/Placeholder.js b/js/src/common/components/Placeholder.js index 28673a08c..69af18575 100644 --- a/js/src/common/components/Placeholder.js +++ b/js/src/common/components/Placeholder.js @@ -9,10 +9,10 @@ import Component from '../Component'; * - `text` */ export default class Placeholder extends Component { - view() { + view(vnode) { return (
-

{this.props.text}

+

{this.attrs.text}

); }