PROD-2229

This commit is contained in:
azanbinzahid
2020-11-27 17:36:55 +05:00
parent c04fa4b92d
commit c6e36c4fa2

View File

@@ -16,12 +16,15 @@
},
render: function() {
this.$el.html(_.template(sectionTemplate)({
HtmlUtils: HtmlUtils,
sections: this.options.sections,
tabName: this.options.tabName,
tabLabel: this.options.tabLabel
}));
HtmlUtils.setHtml(
this.$el,
HtmlUtils.template(sectionTemplate)({
HtmlUtils: HtmlUtils,
sections: this.options.sections,
tabName: this.options.tabName,
tabLabel: this.options.tabLabel
})
);
this.renderFields();
},