@trackunit/iris-app 1.4.45 → 1.4.46

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,3 +1,7 @@
1
+ ## 1.4.46 (2025-08-13)
2
+
3
+ This was a version bump only for iris-app to align it with other projects, there were no code changes.
4
+
1
5
  ## 1.4.45 (2025-08-12)
2
6
 
3
7
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app",
3
- "version": "1.4.45",
3
+ "version": "1.4.46",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "main": "src/index.js",
6
6
  "generators": "./generators.json",
@@ -164,9 +164,9 @@ export const App = () => {
164
164
  if (isEditMode) {
165
165
  return (
166
166
  <WidgetEditBody
167
- onSave={(newData) => {
168
- setData(newData, 1);
169
- closeEditMode();
167
+ onSave={async (newData) => {
168
+ await setData(newData, 1);
169
+ await closeEditMode();
170
170
  }}
171
171
  onCancel={closeEditMode}
172
172
  initialData={data}