@@ -213,7 +213,7 @@ export default function EditorModePanel() {
213
213
}
214
214
onSubmit = { ( e ) => {
215
215
e . preventDefault ( )
216
- saveChanges ( )
216
+ dispatch ( saveChanges ( ) )
217
217
} }
218
218
>
219
219
< div className = "flex justify-between border-b border-solid border-b-stone-300 border-l-0 border-t-0 border-r-0 -mx-2 -mt-2 mb-2" >
@@ -229,39 +229,39 @@ export default function EditorModePanel() {
229
229
navigationData = { editorData . missing . cast }
230
230
title = "Missing cast"
231
231
description = "Navigate to comics without cast members"
232
- onSetCurrentComic = { setCurrentComic }
232
+ onSetCurrentComic = { ( c ) => dispatch ( setCurrentComic ( c ) ) }
233
233
id = { - 1 }
234
234
useColors = { settings . useColors }
235
235
/>
236
236
< MissingNavElement
237
237
navigationData = { editorData . missing . location }
238
238
title = "Missing location"
239
239
description = "Navigate to comics without locations"
240
- onSetCurrentComic = { setCurrentComic }
240
+ onSetCurrentComic = { ( c ) => dispatch ( setCurrentComic ( c ) ) }
241
241
id = { - 2 }
242
242
useColors = { settings . useColors }
243
243
/>
244
244
< MissingNavElement
245
245
navigationData = { editorData . missing . storyline }
246
246
title = "Missing storyline"
247
247
description = "Navigate to comics without storylines"
248
- onSetCurrentComic = { setCurrentComic }
248
+ onSetCurrentComic = { ( c ) => dispatch ( setCurrentComic ( c ) ) }
249
249
id = { - 3 }
250
250
useColors = { settings . useColors }
251
251
/>
252
252
< MissingNavElement
253
253
navigationData = { editorData . missing . title }
254
254
title = "Missing title"
255
255
description = "Navigate to comics without a title"
256
- onSetCurrentComic = { setCurrentComic }
256
+ onSetCurrentComic = { ( c ) => dispatch ( setCurrentComic ( c ) ) }
257
257
id = { - 4 }
258
258
useColors = { settings . useColors }
259
259
/>
260
260
< MissingNavElement
261
261
navigationData = { editorData . missing . tagline }
262
262
title = "Missing tagline"
263
263
description = "Navigate to comics without a tagline"
264
- onSetCurrentComic = { setCurrentComic }
264
+ onSetCurrentComic = { ( c ) => dispatch ( setCurrentComic ( c ) ) }
265
265
id = { - 5 }
266
266
useColors = { settings . useColors }
267
267
/>
@@ -280,7 +280,7 @@ export default function EditorModePanel() {
280
280
label = "Title"
281
281
inputId = "qcext-comic-title"
282
282
value = { title }
283
- onValueChange = { setTitle }
283
+ onValueChange = { ( t ) => dispatch ( setTitle ( t ) ) }
284
284
dirty = { isTitleDirty }
285
285
/>
286
286
</ ExpandingEditor >
@@ -295,7 +295,7 @@ export default function EditorModePanel() {
295
295
label = "Tagline"
296
296
inputId = "qcext-comic-tagline"
297
297
value = { tagline }
298
- onValueChange = { setTagline }
298
+ onValueChange = { ( t ) => dispatch ( setTagline ( t ) ) }
299
299
dirty = { isTaglineDirty }
300
300
/>
301
301
</ ExpandingEditor >
@@ -312,9 +312,11 @@ export default function EditorModePanel() {
312
312
inputId = "qcext-comic-publish-date"
313
313
dateValue = { publishDate }
314
314
isAccurateValue = { isAccuratePublishDate }
315
- onDateValueChange = { ( date ) => setPublishDate ( date ) }
315
+ onDateValueChange = { ( date ) => dispatch ( setPublishDate ( date ) ) }
316
316
onIsAccurateValueChange = { ( isAccuratePublishDate ) =>
317
- setIsAccuratePublishDate ( isAccuratePublishDate )
317
+ dispatch (
318
+ setIsAccuratePublishDate ( isAccuratePublishDate )
319
+ )
318
320
}
319
321
isDateValueDirty = { isPublishDateDirty }
320
322
isIsAccurateValueDirty = { isIsAccuratePublishDateDirty }
0 commit comments