This commit is contained in:
zadam
2020-01-18 18:01:16 +01:00
parent b25c1d6fa8
commit b00a9f4415
12 changed files with 91 additions and 102 deletions

View File

@@ -28,11 +28,11 @@ const TPL = `
export default class PromotedAttributesWidget extends TabAwareWidget {
doRender() {
const $widget = $(TPL);
this.$widget = $(TPL);
this.$container = $widget.find(".promoted-attributes");
this.$container = this.$widget.find(".promoted-attributes");
return $widget;
return this.$widget;
}
async activeTabChanged() {