Skip to content

Commit

Permalink
FIO-7445: fixed an issue with interpolated data in HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
KatrinKhilko committed Apr 26, 2024
1 parent 86fde8f commit d8fd171
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/html/HTML.js
Expand Up @@ -101,8 +101,8 @@ export default class HTMLComponent extends Component {
attach(element) {
this.loadRefs(element, { html: 'single' });
this.dataReady.then(() => {
if (this.element) {
this.setContent(this.elemet, this.content);
if (this.refs.html) {
this.setContent(this.refs.html, this.content);
}
});
return super.attach(element);
Expand Down

0 comments on commit d8fd171

Please sign in to comment.