Skip to content

Commit

Permalink
Merge branch 'master' into nagpra-inventory-qa
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-lee authored Aug 28, 2024
2 parents 16aa90a + ebac971 commit a3742f4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/record/Field.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -242,3 +242,4 @@ export default function Field(props, context) {

Field.contextTypes = contextTypes;
Field.propTypes = propTypes;
Field.toJSON = () => 'Field';
1 change: 1 addition & 0 deletions src/components/record/InputTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,4 @@ export default function InputTable(props, context) {

InputTable.propTypes = propTypes;
InputTable.contextTypes = contextTypes;
InputTable.toJSON = () => 'InputTable';
1 change: 1 addition & 0 deletions src/containers/layout/PanelContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,6 @@ export const ConnectedPanel = connect(
const EnhancedConnectedPanel = withRecordType(withConfig(ConnectedPanel));

EnhancedConnectedPanel.propTypes = Panel.propTypes;
EnhancedConnectedPanel.toJSON = () => 'Panel';

export default EnhancedConnectedPanel;
2 changes: 1 addition & 1 deletion src/plugins/recordTypes/account/forms/default.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const template = (configContext) => {
} = configContext.recordComponents;

return (
<Field name="ns3:accounts_common">
<Field name="ns2:accounts_common">
<Row>
<Col>
<Field name="email" />
Expand Down

0 comments on commit a3742f4

Please sign in to comment.