Skip to content

Commit f7a4667

Browse files
committed
MC-4265: update composer.json for magento/module-page-builder-analytics
- revert change to app/code/Magento/PageBuilder/view/adminhtml/web/js/content-type/products/form/provider.js
1 parent 7e083ab commit f7a4667

File tree

1 file changed

+22
-0
lines changed
  • app/code/Magento/PageBuilder/view/adminhtml/web/js/content-type/products/form

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/**
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
5+
6+
define([
7+
'Magento_PageBuilder/js/form/provider',
8+
'Magento_PageBuilder/js/form/provider/conditions-data-processor'
9+
], function (Provider, conditionsDataProcessor) {
10+
'use strict';
11+
12+
return Provider.extend({
13+
/** @inheritdoc **/
14+
save: function () {
15+
var data = this.get('data');
16+
17+
conditionsDataProcessor(data, 'conditions_encoded');
18+
19+
return this._super();
20+
}
21+
});
22+
});

0 commit comments

Comments
 (0)