Skip to content

Commit

Permalink
📝 Fiks skrivefeil i Select-eksempler (#2140)
Browse files Browse the repository at this point in the history
  • Loading branch information
HalvorHaugan authored Aug 4, 2023
1 parent 9641215 commit de3991d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion aksel.nav.no/website/pages/eksempler/select/default.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { withDsExample } from "components/website-modules/examples/withDsExample

const Example = () => {
return (
<Select label="Hvilket land har du bosted i.">
<Select label="Hvilket land har du bosted i?">
<option value="">Velg land</option>
<option value="norge">Norge</option>
<option value="sverige">Sverige</option>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { withDsExample } from "components/website-modules/examples/withDsExample
const Example = () => {
return (
<Select
label="Hvilket land har du bosted i."
label="Hvilket land har du bosted i?"
description="Velg det landet du tilbringer mest tid."
>
<option value="">Velg land</option>
Expand Down
2 changes: 1 addition & 1 deletion aksel.nav.no/website/pages/eksempler/select/disabled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { withDsExample } from "components/website-modules/examples/withDsExample

const Example = () => {
return (
<Select label="Hvilket land har du bosted i." disabled>
<Select label="Hvilket land har du bosted i?" disabled>
<option value="">Velg land</option>
<option value="norge">Norge</option>
<option value="sverige">Sverige</option>
Expand Down
2 changes: 1 addition & 1 deletion aksel.nav.no/website/pages/eksempler/select/error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { withDsExample } from "components/website-modules/examples/withDsExample
const Example = () => {
return (
<Select
label="Hvilket land har du bosted i."
label="Hvilket land har du bosted i?"
error="Adressen matcher ikke landet du har satt som bosted."
>
<option value="">Velg land</option>
Expand Down
2 changes: 1 addition & 1 deletion aksel.nav.no/website/pages/eksempler/select/hide-label.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { withDsExample } from "components/website-modules/examples/withDsExample

const Example = () => {
return (
<Select label="Hvilket land har du bosted i." hideLabel>
<Select label="Hvilket land har du bosted i?" hideLabel>
<option value="">Velg land</option>
<option value="norge">Norge</option>
<option value="sverige">Sverige</option>
Expand Down
2 changes: 1 addition & 1 deletion aksel.nav.no/website/pages/eksempler/select/readonly.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { withDsExample } from "components/website-modules/examples/withDsExample

const Example = () => {
return (
<Select label="Hvilket land har du bosted i." readOnly value="sverige">
<Select label="Hvilket land har du bosted i?" readOnly value="sverige">
<option value="">Velg land</option>
<option value="norge">Norge</option>
<option value="sverige">Sverige</option>
Expand Down
2 changes: 1 addition & 1 deletion aksel.nav.no/website/pages/eksempler/select/small.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { withDsExample } from "components/website-modules/examples/withDsExample

const Example = () => {
return (
<Select label="Hvilket land har du bosted i." size="small">
<Select label="Hvilket land har du bosted i?" size="small">
<option value="">Velg land</option>
<option value="norge">Norge</option>
<option value="sverige">Sverige</option>
Expand Down

0 comments on commit de3991d

Please sign in to comment.