Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

p-inputOtp does not paste code sent by SMS, only sets the first digit #16373

Open
jvegaseg opened this issue Sep 12, 2024 · 5 comments
Open

p-inputOtp does not paste code sent by SMS, only sets the first digit #16373

jvegaseg opened this issue Sep 12, 2024 · 5 comments
Labels
Status: Needs Triage Issue will be reviewed by Core Team and a relevant label will be added as soon as possible
Milestone

Comments

@jvegaseg
Copy link

Describe the bug

Using a mobile and when an OTP is sent by SMS, the keyboard suggest the code, if your select the suggestion, only the first char is copied in the fields (6-digits).

I do not know it it related to autocomplete="one-time-code" attribute but p-inputOtp is not using it.

Environment

A web page using Chrome navigator on an iphone mobile.

Reproducer

No response

Angular version

18.2.4

PrimeNG version

17.18.10

Build / Runtime

TypeScript

Language

TypeScript

Node version (for AoT issues node --version)

v20.14.0

Browser(s)

Chrome 128.0.6613.120

Steps to reproduce the behavior

No response

Expected behavior

6-digits code filled in the p-inputOtp field

@jvegaseg jvegaseg added the Status: Needs Triage Issue will be reviewed by Core Team and a relevant label will be added as soon as possible label Sep 12, 2024
@gitadam0
Copy link

@jvegaseg any updates?

@gquittet
Copy link

Hello @gitadam0 @jvegaseg 👋

I ended up with this solution and it works well on my side:

<p-inputOtp [formControl]="otpInput" [integerOnly]="true" [length]="6">
  <ng-template pTemplate="input" let-token let-events="events">
    <input
      pInputText
      type="text"
      [maxLength]="1"
      (input)="events.input($event)"
      (paste)="events.paste($event)"
      [attr.value]="token"
      autocomplete="one-time-code"
    />
  </ng-template>
</p-inputOtp>

@luca-peruzzo
Copy link

this bug is also present in primeng 18.0.0-beta.2
inputotp

@luca-peruzzo
Copy link

this bug is also present in primeng 18.0.0-beta.3
inputotp

@medbenmakhlouf
Copy link

I handled this use case in my last PR and I wrote a test fo it , you can check it in this commit : 1bde5dd

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Status: Needs Triage Issue will be reviewed by Core Team and a relevant label will be added as soon as possible
Projects
None yet
Development

No branches or pull requests

6 participants