mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-12 18:56:01 +00:00
feat(Map): Link signature on splash
This commit is contained in:
@@ -90,7 +90,7 @@ export const SystemSettingsDialog = ({ systemId, visible, setVisible }: SystemSe
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const handleInput = useCallback((e: any) => {
|
const handleInput = useCallback((e: any) => {
|
||||||
e.target.value = e.target.value.toUpperCase().replace(/[^A-Z0-9]/g, '');
|
e.target.value = e.target.value.toUpperCase().replace(/[^A-Z0-9[\](){}]/g, '');
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -160,7 +160,7 @@ export const SystemSettingsDialog = ({ systemId, visible, setVisible }: SystemSe
|
|||||||
aria-describedby="label"
|
aria-describedby="label"
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
value={label}
|
value={label}
|
||||||
maxLength={3}
|
maxLength={5}
|
||||||
onChange={e => setLabel(e.target.value)}
|
onChange={e => setLabel(e.target.value)}
|
||||||
onInput={handleInput}
|
onInput={handleInput}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user