File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
web/src/app/services/UniversalKey Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import { FormControl , InputLabel , OutlinedInput } from '@mui/material'
2
2
import InfoOutlinedIcon from '@mui/icons-material/InfoOutlined'
3
- import Link from '@mui/material/Link'
4
3
import Tooltip from '@mui/material/Tooltip'
5
4
import React from 'react'
6
5
import ExprEditor from '../../editor/ExprEditor'
6
+ import AppLink from '../../util/AppLink'
7
7
8
8
export type ExprFieldProps = {
9
9
error ?: boolean
@@ -24,7 +24,7 @@ export function ExprField(props: ExprFieldProps): React.ReactNode {
24
24
variant = 'outlined'
25
25
data-testid = { 'code-' + props . name }
26
26
>
27
- < InputLabel htmlFor = { props . name } sx = { { padding : '0 50px 0 0' } } >
27
+ < InputLabel htmlFor = { props . name } sx = { { padding : '0 50px 0 0' } } shrink >
28
28
< div style = { { display : 'flex' , alignItems : 'center' } } >
29
29
{ props . label }
30
30
< AppLink
@@ -35,7 +35,7 @@ export function ExprField(props: ExprFieldProps): React.ReactNode {
35
35
< Tooltip title = 'Expr syntax' >
36
36
< InfoOutlinedIcon />
37
37
</ Tooltip >
38
- </ Link >
38
+ </ AppLink >
39
39
</ div >
40
40
</ InputLabel >
41
41
< OutlinedInput
You can’t perform that action at this time.
0 commit comments