-
Notifications
You must be signed in to change notification settings - Fork 2
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
fikser bug der variabel i søknads-api-tekstene ikke ble erstattet #760
Conversation
export const replaceNavkontor = (text: string, valgtEnhetsNavn?: string) => { | ||
// Hvis ikke valgtEnhetsNavn finnes, erstattes søkestrengen med capture-gruppa ([\w\s-]*) | ||
// som er 1 eller fler bokstaver, whitespace eller '-', feks "NAV-kontoret ditt" fra søknads-api-tekstene | ||
return text.replaceAll(/{navkontor:([\w\s-]*)}/g, valgtEnhetsNavn ? valgtEnhetsNavn : "$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.
.replaceAll er tydeligvis ikke en funksjon 🤔
Fungerer denne i alle nettlesere?
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.
Byttet til replace! Trodde først det ikke funket, men nå ser det ut som det funket likevel. Skal test i labs for sikkerhetsskyld, må bare få bygget igjennom først :)
(ble litt tidlig PR, hadde tenkt å lage draft, men fikk det ikke til i ettertid..)
Bygg feiler, sies at det skulle ha kommet en fix på sikkerhetshullet i helgen facebook/create-react-app#10412, så ser an litt. |
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
No description provided.