We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a53f56 commit fb54f6eCopy full SHA for fb54f6e
packages/nextjs/app/listing/new/page.tsx
@@ -485,6 +485,8 @@ const NewListingPageInner = () => {
485
type="number"
486
min={1}
487
value={initialQuantity}
488
+ onFocus={e => (e.target as HTMLInputElement).select()}
489
+ onClick={e => (e.currentTarget as HTMLInputElement).select()}
490
onChange={e => setInitialQuantity(e.target.value)}
491
/>
492
) : null}
0 commit comments