ordering-ui-admin-external 1.43.2 → 1.43.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_bundles/{ordering-ui-admin.9f73fdc1ef3e64fd05df.js → ordering-ui-admin.d2da6e5fd4261806aa19.js} +2 -2
- package/_modules/components/Stores/BusinessInformation/index.js +6 -0
- package/package.json +1 -1
- package/src/components/Stores/BusinessInformation/index.js +5 -0
- /package/_bundles/{ordering-ui-admin.9f73fdc1ef3e64fd05df.js.LICENSE.txt → ordering-ui-admin.d2da6e5fd4261806aa19.js.LICENSE.txt} +0 -0
|
@@ -113,6 +113,12 @@ var BusinessInformationUI = function BusinessInformationUI(props) {
|
|
|
113
113
|
padding: "0px"
|
|
114
114
|
}, /*#__PURE__*/_react.default.createElement("span", null, disableReasonDictionary.EXCESS_ORDERS)),
|
|
115
115
|
color: 'primary'
|
|
116
|
+
}, {
|
|
117
|
+
value: disableReasonDictionary.OVEN_FAILURE,
|
|
118
|
+
content: /*#__PURE__*/_react.default.createElement(_styles2.Option, {
|
|
119
|
+
padding: "0px"
|
|
120
|
+
}, /*#__PURE__*/_react.default.createElement("span", null, disableReasonDictionary.OVEN_FAILURE)),
|
|
121
|
+
color: 'primary'
|
|
116
122
|
}, {
|
|
117
123
|
value: disableReasonDictionary.NO_ELECTRIC_POWER,
|
|
118
124
|
content: /*#__PURE__*/_react.default.createElement(_styles2.Option, {
|
package/package.json
CHANGED
|
@@ -93,6 +93,11 @@ const BusinessInformationUI = (props) => {
|
|
|
93
93
|
content: <Option padding='0px'><span>{disableReasonDictionary.EXCESS_ORDERS}</span></Option>,
|
|
94
94
|
color: 'primary'
|
|
95
95
|
},
|
|
96
|
+
{
|
|
97
|
+
value: disableReasonDictionary.OVEN_FAILURE,
|
|
98
|
+
content: <Option padding='0px'><span>{disableReasonDictionary.OVEN_FAILURE}</span></Option>,
|
|
99
|
+
color: 'primary'
|
|
100
|
+
},
|
|
96
101
|
{
|
|
97
102
|
value: disableReasonDictionary.NO_ELECTRIC_POWER,
|
|
98
103
|
content: <Option padding='0px'><span>{disableReasonDictionary.NO_ELECTRIC_POWER}</span></Option>,
|