@fto-consult/expo-ui 6.71.0 → 6.71.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "6.71.0",
3
+ "version": "6.71.1",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "main",
6
6
  "scripts": {
@@ -173,7 +173,7 @@ export default class Filter extends AppComponent {
173
173
  }
174
174
  let defaultValue = defaultVal(this.props.defaultValue);
175
175
  operator = defaultVal(operator,"$and");
176
- if(actions == _inActions || type.contains("select") || this.props.multiple){
176
+ if(actions == _inActions || type.contains("select")){
177
177
  defaultValue = isNonNullString(defaultValue)? defaultValue.split(",") : Array.isArray(defaultValue)? defaultValue : !isNullOrEmpty(defaultValue)? [defaultValue] : {};
178
178
  }
179
179
  return {actions,action,ignoreCase,operator,operators,manualRun:defaultBool(this.props.manualRun,false),defaultValue,isTextFilter};