@longline/aqua-ui 1.0.252 → 1.0.253
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/containers/Form/Field.js +1 -1
- package/package.json +1 -1
package/containers/Form/Field.js
CHANGED
|
@@ -138,7 +138,7 @@ var Field = function (props) {
|
|
|
138
138
|
transparent: transparent,
|
|
139
139
|
ghost: ghost,
|
|
140
140
|
// If wrapped, set control to fluid. Otherwise use control's fluid setting:
|
|
141
|
-
fluid: props.wrapper ? true : props.control.fluid
|
|
141
|
+
fluid: props.wrapper ? true : props.control.props.fluid
|
|
142
142
|
});
|
|
143
143
|
};
|
|
144
144
|
var getLabel = function () {
|