Skip to content

Commit d1a3fbb

Browse files
authored
[DOP-25646] add scroll to sql query field via (#51)
1 parent ef4d5bc commit d1a3fbb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/components/operation/OperationRaShow.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,11 @@ const OperationRaShow = (): ReactElement => {
9393
<Stack
9494
direction="row"
9595
spacing={3}
96-
height="10rem"
97-
overflow-y="auto"
96+
sx={{
97+
height: "10rem",
98+
overflowY: "auto",
99+
overflowX: "auto",
100+
}}
98101
>
99102
<TextField source="data.sql_query" component="pre" />
100103
</Stack>

0 commit comments

Comments
 (0)