File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ export default class Form extends React.Component {
187187 fileListEndpoint : this . props . fileListEndpoint ,
188188 fieldName : this . props . fieldName ,
189189 modelName : this . props . modelName ,
190+ uid : this . props . uid ,
190191 } }
191192 >
192193 { this . getFields ( ) }
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export default function JSONForm(config) {
1010 this . fileListEndpoint = config . fileListEndpoint ;
1111 this . fieldName = config . fieldName ;
1212 this . modelName = config . modelName ;
13+ this . uid = config . uid ;
1314
1415 this . render = function ( ) {
1516 ReactDOM . render (
@@ -21,6 +22,7 @@ export default function JSONForm(config) {
2122 fileListEndpoint = { this . fileListEndpoint }
2223 fieldName = { this . fieldName }
2324 modelName = { this . modelName }
25+ uid = { this . uid }
2426 /> ,
2527 document . getElementById ( this . containerId )
2628 ) ;
You can’t perform that action at this time.
0 commit comments