Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Legger til autocomplete=off på tekstinput #1500

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ const DelSkjermModal = (props: Props) => {
value={code}
onChange={onChange}
maxLength={5}
autoComplete="off"
/>
<div className={style.knapper}>
<Button onClick={onClick}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const SokInput = (props: Props) => {
value={inputValue}
type="text"
label={finnTekst('sok-knapp-sokefelt', language)}
autoComplete="off"
/>
<SokKnapper writtenInput={writtenInput} onReset={onReset} id={id} />
</div>
Expand Down