style: revert input style (#211)

This commit is contained in:
Carlos Valente
2022-09-28 21:14:54 +02:00
committed by GitHub
parent 562cb769c5
commit f119fb4529
4 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "ontime-ui",
"version": "1.9.0",
"version": "1.8.1",
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.3.2",
@@ -194,7 +194,7 @@ export default function OscSettingsModal() {
placeholder='8888'
value={formData.port}
onChange={(event) => handleChange('port', parseInt(event.target.value, 10))}
style={{ width: '6em', textAlign: 'center' }}
style={{ width: '6em' }}
/>
</FormControl>
</div>
@@ -1,6 +1,7 @@
export const inputProps = {
size: 'sm',
autoComplete: 'off',
variant: 'outline',
};
export const portInputProps = {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "ontime",
"version": "1.8.0",
"version": "1.8.1",
"author": "Carlos Valente",
"description": "Time keeping for live events",
"repository": "https://github.com/cpvalente/ontime",