File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
components/InputTextAutoSave Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ const InputTextAutoSave: FC<InputTextProps> = (props: InputTextProps) => {
37
37
< InputText
38
38
{ ...props }
39
39
value = { value }
40
+ forceUpdateValue
40
41
onChange = { function onChange ( event : FocusEvent < HTMLInputElement > ) {
41
42
setValue ( event . target . value )
42
43
} }
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ const initialState: {
20
20
connectInfo ?: ConnectInfo
21
21
loadingMemberTraits ?: boolean
22
22
loadingMemberInfo ?: boolean
23
- availableForGigs ?: boolean
24
23
} = {
25
24
}
26
25
@@ -40,7 +39,10 @@ const memberReducer: any = (
40
39
case ACTIONS . MEMBER . SET_OPEN_FOR_WORK :
41
40
return {
42
41
...state ,
43
- availableForGigs : action . payload ,
42
+ memberInfo : {
43
+ ...state . memberInfo ,
44
+ availableForGigs : action . payload ,
45
+ } ,
44
46
}
45
47
case ACTIONS . MEMBER . SET_WORKS :
46
48
return {
You can’t perform that action at this time.
0 commit comments