fix: max length of input

This commit is contained in:
himself65 2023-04-20 02:36:25 -05:00
parent 65c1bee7f0
commit c08c587efb

View File

@ -98,7 +98,7 @@ export const GeneralPanel: React.FC<PanelProps> = ({
height={38}
value={input}
placeholder={t('Workspace Name')}
maxLength={15}
maxLength={50}
minLength={0}
onChange={newName => {
setInput(newName);