@@ -11,6 +11,10 @@ import { Field, FastField } from "formik";
11
11
import { Accordion , Container , Icon } from "semantic-ui-react" ;
12
12
import _omit from "lodash/omit" ;
13
13
import _get from "lodash/get" ;
14
+ import Overridable from "react-overridable" ;
15
+ import {
16
+ FormSectionFeedback ,
17
+ } from "@js/invenio_rdm_records" ;
14
18
15
19
export class AccordionField extends Component {
16
20
hasError ( errors , initialValues = undefined , values = undefined ) {
@@ -33,6 +37,8 @@ export class AccordionField extends Component {
33
37
form : { errors, status, initialErrors, initialValues, values } ,
34
38
} = props ;
35
39
40
+ const { includesPaths } = this . props ;
41
+
36
42
// eslint-disable-next-line no-unused-vars
37
43
const { label, children, active, ...ui } = this . props ;
38
44
const uiProps = _omit ( { ...ui } , [ "optimized" , "includesPaths" ] ) ;
@@ -80,6 +86,12 @@ export class AccordionField extends Component {
80
86
{ panel . title . content }
81
87
< Icon name = "angle down" />
82
88
</ Accordion . Title >
89
+ < Overridable
90
+ id = "InvenioAppRdm.AccordionField.FormFeedback.container"
91
+ fieldPath = "message"
92
+ >
93
+ < FormSectionFeedback fieldPath = "message" includesPaths = { includesPaths } />
94
+ </ Overridable >
83
95
< Accordion . Content active = { activeIndex === index } >
84
96
{ panel . content . content }
85
97
</ Accordion . Content >
0 commit comments