@stoker-platform/web-app 0.5.249 → 0.5.250

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stoker-platform/web-app
2
2
 
3
+ ## 0.5.250
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: remove image fields from duplicated record
8
+
3
9
  ## 0.5.249
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/web-app",
3
- "version": "0.5.249",
3
+ "version": "0.5.250",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
package/src/Form.tsx CHANGED
@@ -4677,6 +4677,7 @@ function RecordForm({
4677
4677
  field.type !== "Computed" &&
4678
4678
  !(field.type === "Number" && field.autoIncrement) &&
4679
4679
  !(collection.auth && field.name === "User_ID") &&
4680
+ !tryFunction(fieldCustomization.admin?.image) &&
4680
4681
  restrictCreateAccess(field, permissions, collection.labels.collection, userClaims) &&
4681
4682
  fieldCustomization.custom?.initialValue === undefined
4682
4683
  ) {