@stoker-platform/web-app 0.5.63 → 0.5.64

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.64
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: show save button on update many form
8
+
3
9
  ## 0.5.63
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.63",
3
+ "version": "0.5.64",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
package/src/Form.tsx CHANGED
@@ -5519,7 +5519,7 @@ function RecordForm({
5519
5519
  )}
5520
5520
  </div>
5521
5521
  {((operation === "create" && hasCreateAccess) ||
5522
- (operation === "update" && hasUpdateAccess)) && (
5522
+ ((operation === "update" || operation === "update-many") && hasUpdateAccess)) && (
5523
5523
  <div className="flex gap-2 items-center">
5524
5524
  <Button
5525
5525
  className="w-full md:w-auto"