Skip to content

Commit bd07bcc

Browse files
committed
Stabilize Builds on Forward Ports Batch 35
1 parent 7005102 commit bd07bcc

File tree

1 file changed

+2
-1
lines changed
  • app/code/Magento/Ui/view/base/web/js/form/element

1 file changed

+2
-1
lines changed

app/code/Magento/Ui/view/base/web/js/form/element/wysiwyg.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ define([
4646
component: this,
4747
selector: 'button'
4848
}, function (element) {
49-
this.$wysiwygEditorButton = $(element);
49+
this.$wysiwygEditorButton = this.$wysiwygEditorButton ?
50+
this.$wysiwygEditorButton.add($(element)) : $(element);
5051
}.bind(this));
5152

5253
return this;

0 commit comments

Comments
 (0)