@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.
@@ -3569,7 +3569,7 @@ const GridFormDropDown = (props) => {
3569
3569
  }, [filter, filteredValues, options, props, selectItemHandler, selectedItem, selectedRows, subSelectedValue]);
3570
3570
  const { popoverWrapper } = useGridPopoverHook({
3571
3571
  className: props.className,
3572
- invalid: () => !!(selectedItem && !subComponentIsValid.current),
3572
+ invalid: () => !options || !!(selectedItem && !subComponentIsValid.current),
3573
3573
  save,
3574
3574
  dontSaveOnExternalClick: true,
3575
3575
  });