@linzjs/step-ag-grid 7.19.2 → 7.19.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
|
@@ -166,11 +166,11 @@ export const GridFormMultiSelect = <RowType extends GridBaseRow>(props: GridForm
|
|
|
166
166
|
|
|
167
167
|
{headerGroups && (
|
|
168
168
|
<div className={"GridFormMultiSelect-options"}>
|
|
169
|
-
{headers.map((header) => {
|
|
169
|
+
{headers.map((header, index) => {
|
|
170
170
|
const subOptions = headerGroups[`${header.filter}`];
|
|
171
171
|
return (
|
|
172
172
|
!isEmpty(subOptions) && (
|
|
173
|
-
|
|
173
|
+
<Fragment key={`group_${index}`}>
|
|
174
174
|
{header.header && <MenuHeader>{header.header}</MenuHeader>}
|
|
175
175
|
{subOptions.map((item, index) =>
|
|
176
176
|
item.value === MenuSeparatorString ? (
|
|
@@ -188,7 +188,7 @@ export const GridFormMultiSelect = <RowType extends GridBaseRow>(props: GridForm
|
|
|
188
188
|
</Fragment>
|
|
189
189
|
),
|
|
190
190
|
)}
|
|
191
|
-
|
|
191
|
+
</Fragment>
|
|
192
192
|
)
|
|
193
193
|
);
|
|
194
194
|
})}
|