authscape 1.0.252 → 1.0.254
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 +2 -2
- package/package.json +1 -1
- package/src/components/FileUploader.js +2 -2
package/index.js
CHANGED
|
@@ -1268,8 +1268,8 @@ var FileUploader = function FileUploader(_ref) {
|
|
|
1268
1268
|
var array = [];
|
|
1269
1269
|
for (var index = 0; index < propertyNames.length; index++) {
|
|
1270
1270
|
array.push({
|
|
1271
|
-
key: propertyNames[
|
|
1272
|
-
value: propertyValues[
|
|
1271
|
+
key: propertyNames[index],
|
|
1272
|
+
value: propertyValues[index]
|
|
1273
1273
|
});
|
|
1274
1274
|
}
|
|
1275
1275
|
setParameters(array);
|
package/package.json
CHANGED
|
@@ -132,8 +132,8 @@ export const FileUploader = ({
|
|
|
132
132
|
|
|
133
133
|
for (let index = 0; index < propertyNames.length; index++) {
|
|
134
134
|
array.push({
|
|
135
|
-
key: propertyNames[
|
|
136
|
-
value: propertyValues[
|
|
135
|
+
key: propertyNames[index],
|
|
136
|
+
value: propertyValues[index],
|
|
137
137
|
});
|
|
138
138
|
}
|
|
139
139
|
|