@linzjs/step-ag-grid 7.11.9 → 7.11.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
@@ -2,7 +2,7 @@
2
2
  "name": "@linzjs/step-ag-grid",
3
3
  "repository": "github:linz/step-ag-grid.git",
4
4
  "license": "MIT",
5
- "version": "7.11.9",
5
+ "version": "7.11.10",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -137,8 +137,8 @@ export const ControlledMenuFr = (
137
137
  if (activeElement !== firstInputEl && activeElement !== lastInputEl) return;
138
138
 
139
139
  const isTextArea = activeElement.nodeName === "TEXTAREA";
140
- const suppressEnterAutoSave = activeElement.getAttribute("data-disableenterautosave") != "false" || isTextArea;
141
- const allowTabToSave = activeElement.getAttribute("data-allowtabtosave") != "false";
140
+ const suppressEnterAutoSave = activeElement.getAttribute("data-disableenterautosave") == "true" || isTextArea;
141
+ const allowTabToSave = activeElement.getAttribute("data-allowtabtosave") == "true";
142
142
  const invokeSave = (reason: string) => {
143
143
  if (!saveButtonRef?.current) return;
144
144
  saveButtonRef.current?.setAttribute("data-reason", reason);