Skip to content

Commit 03946b9

Browse files
committed
Legg til filter for ugyldige janzz
1 parent a60555b commit 03946b9

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/stilling/stilling/adValidationReducer.ts

-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ function* validateLocationArea(): Generator<unknown, any, any> {
144144
function* validateYrkestittel(): Generator<unknown, any, any> {
145145
const state = yield select();
146146
const { categoryList } = state.adData;
147-
console.log('validateYrkestittel SET_JANZZ', categoryList);
148147

149148
if (valueIsNotSet(categoryList)) {
150149
yield addValidationError({ field: 'yrkestittel', message: 'Gyldig yrkestittel må velges' });

src/stilling/stilling/edit/om-stillingen/janzz/Janzz.tsx

+8-2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ const Janzz: FunctionComponent<Props> = ({ tittel }) => {
5858

5959
const feilmeldingTilBruker = error ? error.message : undefined;
6060

61+
const filteredSuggestions = suggestions
62+
? suggestions
63+
.filter((f) => f.styrk08 && f.styrk08.trim() !== '' && f.styrk08 !== '9999')
64+
.map((f) => f.label)
65+
: [];
66+
6167
return (
6268
<div>
6369
<UnsafeCombobox
@@ -68,15 +74,15 @@ const Janzz: FunctionComponent<Props> = ({ tittel }) => {
6874
? ''
6975
: input
7076
}
71-
options={suggestions ? suggestions.map((f) => f.label) : []}
77+
options={filteredSuggestions}
7278
onChange={onChange}
7379
onToggleSelected={onToggleSelected}
7480
onBlur={onBlur}
7581
isLoading={isLoading}
7682
error={yrkestittelError || feilmeldingTilBruker}
7783
className={css.typeahead}
7884
aria-labelledby="endre-stilling-styrk"
79-
filteredOptions={suggestions ? suggestions.map((f) => f.label) : []}
85+
filteredOptions={filteredSuggestions}
8086
/>
8187
</div>
8288
);

0 commit comments

Comments
 (0)