@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.
@@ -3590,7 +3590,7 @@ const GridFormDropDown = (props) => {
3590
3590
  }, [filter, filteredValues, options, props, selectItemHandler, selectedItem, selectedRows, subSelectedValue]);
3591
3591
  const { popoverWrapper } = useGridPopoverHook({
3592
3592
  className: props.className,
3593
- invalid: () => !!(selectedItem && !subComponentIsValid.current),
3593
+ invalid: () => !options || !!(selectedItem && !subComponentIsValid.current),
3594
3594
  save,
3595
3595
  dontSaveOnExternalClick: true,
3596
3596
  });