react-crud-mobile 1.3.9 → 1.3.10

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,5 +1,5 @@
1
1
  {
2
- "version": "1.3.9",
2
+ "version": "1.3.10",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -130,9 +130,11 @@ export default function UIModal(props: ChildType) {
130
130
 
131
131
  let color = Utils.nvl(headerStyle.color, 'white');
132
132
  let defaults = { color };
133
+ let key = `${scope.currentDialog.name}-${index}`;
133
134
 
134
135
  return (
135
136
  <Modal
137
+ key={key}
136
138
  animationType="slide"
137
139
  transparent={true}
138
140
  visible={modalVisible}