feat(xo-web): SSH key input monospaced

This commit is contained in:
Julien Fontanet
2021-05-21 14:19:50 +02:00
parent b873ba3a75
commit f35c865348

View File

@@ -37,7 +37,12 @@ export default class NewSshKeyModalBody extends BaseComponent {
<SingleLineRow>
<Col size={4}>{_('key')}</Col>
<Col size={8}>
<textarea className='form-control' onChange={this._onKeyChange} rows={10} value={key || ''} />
<textarea
className='form-control text-monospace'
onChange={this._onKeyChange}
rows={10}
value={key || ''}
/>
</Col>
</SingleLineRow>
</div>