Improve server picker scrolling and subscription input layout
Build and Deploy Gateway / build-and-push (push) Successful in 20s
Build and Deploy Gateway / deploy (push) Successful in 6s

This commit is contained in:
2026-08-11 08:10:15 +03:00
parent 444f26c401
commit 396c5d1917
9 changed files with 51 additions and 63 deletions
@@ -338,18 +338,16 @@ function AddProfileForm({ feature }: { feature: SubscriptionFeatureController })
feature.addProfile();
}}
>
<label>
<span>Ссылка подписки</span>
<input
ref={feature.labelRef}
type="url"
inputMode="url"
value={feature.url}
placeholder="https://…"
aria-invalid={feature.validationStatus === 'invalid'}
onChange={(event) => feature.setUrl(event.target.value)}
/>
</label>
<input
ref={feature.labelRef}
type="url"
inputMode="url"
value={feature.url}
placeholder="https://…"
aria-label="Ссылка подписки"
aria-invalid={feature.validationStatus === 'invalid'}
onChange={(event) => feature.setUrl(event.target.value)}
/>
{message && <div className="client-profile-form-status" role="status">{message}</div>}
<div className="client-profile-form-actions">
{feature.profiles.length > 0 && <button type="button" onClick={feature.cancelAdd}>Отмена</button>}