Commit 9ec88ec 1 parent 21fdd78 commit 9ec88ec Copy full SHA for 9ec88ec
File tree 1 file changed +4
-1
lines changed
electron/renderer/components/grid
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import GridLayout from 'react-grid-layout';
15
15
import { useWindowDimensions } from '../../hooks/window-dimensions' ;
16
16
import { LocalStorage } from '../../lib/local-storage' ;
17
17
import { GridItem } from '../grid-item' ;
18
+ import { Scrollable } from '../scrollable' ;
18
19
19
20
interface GridItemProps {
20
21
itemId : string ;
@@ -215,7 +216,9 @@ const Grid: React.FC<GridProps> = (props: GridProps): ReactNode => {
215
216
titleBarText = { item ! . title }
216
217
onClose = { onGridItemClose }
217
218
>
218
- < EuiText css = { gridItemTextStyles } > { item ! . content } </ EuiText >
219
+ < Scrollable >
220
+ < EuiText css = { gridItemTextStyles } > { item ! . content } </ EuiText >
221
+ </ Scrollable >
219
222
</ GridItem >
220
223
) ;
221
224
} ) ;
You can’t perform that action at this time.
0 commit comments