@linzjs/step-ag-grid 17.4.3 → 17.4.4

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": "17.4.3",
5
+ "version": "17.4.4",
6
6
  "keywords": [
7
7
  "aggrid",
8
8
  "ag-grid",
@@ -184,7 +184,7 @@ export const GridFormDropDown = <RowType extends GridBaseRow>(props: GridFormDro
184
184
 
185
185
  const { popoverWrapper } = useGridPopoverHook({
186
186
  className: props.className,
187
- invalid: () => !!(selectedItem && !subComponentIsValid.current),
187
+ invalid: () => !options || !!(selectedItem && !subComponentIsValid.current),
188
188
  save,
189
189
  dontSaveOnExternalClick: true,
190
190
  });