feat: wrap helperText in span
This commit is contained in:
@@ -203,7 +203,11 @@ const ProxyForm: React.FC = () => {
|
|||||||
fullWidth
|
fullWidth
|
||||||
required
|
required
|
||||||
error={!!errors.server_url}
|
error={!!errors.server_url}
|
||||||
helperText={errors.server_url || t('proxy.server_url_helper')}
|
helperText={
|
||||||
|
<span style={{ marginLeft: '-10px' }}>
|
||||||
|
{errors.server_url || t('proxy.server_url_helper')}
|
||||||
|
</span>
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
<FormControl>
|
<FormControl>
|
||||||
|
|||||||
Reference in New Issue
Block a user