Skip to content

Commit a688c69

Browse files
AxelRICHARDpcdavid
authored andcommitted
[3851] Fix the display of Explorer Filters menu items
Bug: #3851 Signed-off-by: Axel RICHARD <axel.richard@obeo.fr>
1 parent 20197bd commit a688c69

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ As a result, the following maven modules have been deleted: `sirius-web-sample-a
6868
- https://github.com/eclipse-sirius/sirius-web/issues/3811[#3811] [forms] Fix issue with Reference widget not working when placed in a flexbox container
6969
- https://github.com/eclipse-sirius/sirius-web/issues/3776[#3776] [trees] Restore expand all functionality for ref widget trees
7070
- https://github.com/eclipse-sirius/sirius-web/issues/3824[#3824] [core] Fix representation migration participant execution which was failing when there were many representation migration participant to apply.
71+
- https://github.com/eclipse-sirius/sirius-web/issues/3851[#3851] [trees] Fix an issue where the tree filters menu items were not displayed anymore after a click on the filters menu.
7172

7273
=== New Features
7374

packages/trees/frontend/sirius-components-trees/src/views/TreeFiltersMenu.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import FormGroup from '@mui/material/FormGroup';
2020
import IconButton from '@mui/material/IconButton';
2121
import Paper from '@mui/material/Paper';
2222
import Popper from '@mui/material/Popper';
23-
import { makeStyles } from 'tss-react/mui';
2423
import { useEffect, useRef, useState } from 'react';
24+
import { makeStyles } from 'tss-react/mui';
2525
import { TreeFilter } from './ExplorerView.types';
2626
import { TreeFilterMenuProps } from './TreeFiltersMenu.types';
2727

@@ -80,7 +80,8 @@ export const TreeFiltersMenu = ({ filters, onTreeFilterMenuItemClick }: TreeFilt
8080
open={open}
8181
anchorEl={anchorRef.current}
8282
role={undefined}
83-
placement={'bottom-start'}>
83+
placement={'bottom-start'}
84+
transition>
8485
{({ TransitionProps }) => (
8586
<Fade {...TransitionProps} timeout={350}>
8687
<Paper>

0 commit comments

Comments
 (0)