@edvisor/product-language 0.5.1 → 0.5.2
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/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -9118,7 +9118,7 @@ const Row = props => {
|
|
|
9118
9118
|
const currentValue = Array.isArray(props.value) && is(props.multi) ? props.value : [props.value];
|
|
9119
9119
|
const option = options[index];
|
|
9120
9120
|
return jsxs(MenuRow, Object.assign({
|
|
9121
|
-
className: "row",
|
|
9121
|
+
className: "menu-row",
|
|
9122
9122
|
center: true,
|
|
9123
9123
|
active: currentValue.some(val => equal(val, option.value)),
|
|
9124
9124
|
onClick: () => handleClick(option)
|