Panels: GeomapPanel edit mode fix (#66222)

This commit is contained in:
juanicabanas
2023-04-10 21:02:20 -03:00
committed by GitHub
parent 4ba7c48cf5
commit 759a05083a

View File

@@ -21,6 +21,6 @@ export const FrameSelectionEditor = ({ value, context, onChange }: Props) => {
); );
return ( return (
<RefIDPicker value={value.options} onChange={onFilterChange} data={context.data} placeholder="Change filter" /> <RefIDPicker value={value?.options} onChange={onFilterChange} data={context.data} placeholder="Change filter" />
); );
}; };