Skip to content

Commit 4e51b3e

Browse files
authored
fix(AnalyticalTable): allow filtering on grouped rows (#4730)
1 parent 9366944 commit 4e51b3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/main/src/components/AnalyticalTable/ColumnHeader/ColumnHeaderModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ export const ColumnHeaderModal = (props: ColumnHeaderModalProperties) => {
229229
{clearSortingText}
230230
</StandardListItem>
231231
)}
232-
{showFilter && !column.isGrouped && (
232+
{showFilter && (
233233
//todo maybe need to enhance Input selection after ui5-webcomponents issue has been fixed (undefined is displayed as val)
234234
<CustomListItem
235235
type={ListItemType.Inactive}

0 commit comments

Comments
 (0)