Skip to content

Commit

Permalink
fix: update recording ID max length
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzah authored Aug 13, 2024
1 parent f34c2cf commit e548472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export function LoginPanel({
<Panel>
<h1 class="text-3xl font-display text-center">{t('craigWebapp')}</h1>
<div class="flex flex-col gap-4 w-full">
<Input label={t('login.recId')} error={!!error} disabled={isLoading} maxLength={10} value={recordingId} setValue={setRecordingId} />
<Input label={t('login.recId')} error={!!error} disabled={isLoading} maxLength={12} value={recordingId} setValue={setRecordingId} />
<Input label={t('login.webKey')} error={!!error} disabled={isLoading} maxLength={6} value={ennuiKey} setValue={setEnnuiKey} password />
<Dropdown disabled={isLoading} items={servers} label={t('login.server')} className="w-full" full selected={server} onSelect={setServer} />
</div>
Expand Down

0 comments on commit e548472

Please sign in to comment.