We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e083ab commit f7a4667Copy full SHA for f7a4667
app/code/Magento/PageBuilder/view/adminhtml/web/js/content-type/products/form/provider.js
@@ -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