Skip to content
Snippets Groups Projects
Commit 7dcd5196 authored by Tore.Brede's avatar Tore.Brede
Browse files

Fixing issue with isValidFnr function that did not handle empty values as expected

parent 27582790
No related branches found
No related tags found
1 merge request!116GREG-85: Add passport nationality
......@@ -43,8 +43,14 @@ export function submitJsonOpts(method: string, data: object): RequestInit {
}
}
export function isValidFnr(data: string | undefined): boolean | string {
if (data === undefined) {
export function isValidFnr(
data: string | undefined,
allowEmpty = false
): boolean | string {
if (!data) {
if (allowEmpty) {
return true
}
return i18n.t<string>('common:validation.invalidIdNumber').toString()
}
const valid = validator.idnr(data as string).status === 'valid'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment