-
Notifications
You must be signed in to change notification settings - Fork 1
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
IS-3017: Tydeliggjøre søket #574
Conversation
@@ -78,7 +124,7 @@ export default function SokPerson() { | |||
}; | |||
|
|||
const isValidInitials = (initials: string): boolean => { | |||
return initials === '' || (initials.length <= 3 && initials.length > 1); | |||
return initials === '' || (initials.length <= 4 && initials.length > 1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Er det en juridisk grunn til at vi har begrenset det til ett mellomnavn? Kunne vi evt utvidet til fire initialer?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vet ikke 🤔 Litt usikker på om vi har begrensninger i backend eller om det funker med n antall initialer i backend?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vi har ingen øvre grense i backend, bare at det skal være minst to. Kan ikke se noen grunn til å ikke kunne utvide til fire...
<BodyShort>{texts.info}</BodyShort> | ||
<HStack gap="8" align="end"> | ||
<BodyLong>{texts.info}</BodyLong> | ||
<div className="grid grid-cols-[auto,auto,auto] gap-x-8 gap-y-2 align-end max-w-max"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dette ser kanskje litt voldsomt ut, men det er egt bare for å få error meldingene under det respektive input feltet med grid istedenfor flex.
src/sider/sokperson/SokPerson.tsx
Outdated
initials: { | ||
title: 'Hvordan fyller jeg inn initialer?', | ||
text: | ||
'For å optimalisere søket kan du fylle inn initialene til den du vil søke opp. Feltet krever forbokstaven for fornavn og etternavn uten punktum mellom bokstavene. Det er mulig å legge til forbokstavene for mellomnavn for mer nøyaktig søkeresultat. Rekkefølgen på fornavn, mellomnavn og etternavn i søket er viktig.', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Stemmer det at man ikke kan skrive med punktum mellom bokstavene? Jeg kan ikke se at vi har noen feilmeldinger for det i front-end. Eller er det kanskje ikke reelt å prøve å skrive inn "I.N.G" istedenfor "ING"?
9633cd4
to
05cdbf2
Compare
src/sider/sokperson/SokPerson.tsx
Outdated
<> | ||
Her kan du fylle inn fødselsdato til den du vil søke opp. For å kunne | ||
søke må sifrene fylles inn på formatet: | ||
<strong> dag, måned, år</strong>, i den rekkefølgen. Ønsker man et mer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Blir det rart å si et format med komma, legger det opp til at folk skriver 28, 01, 2025
?
Kanskje heller skrive For å kunne søke må sifrene fylles inn i rekkefølgen: <strong> dag måned år</strong>
eller noe?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Godt poeng, kan prøve uten komma!
b2b3cc0
to
37b8a4c
Compare
37b8a4c
to
b471a2d
Compare
Hva har blitt lagt til✨🌈
Screenshots 📸✨
Før:
Nå:
Skjermopptak.2025-01-27.kl.15.57.22.mov