Skip to content

Commit

Permalink
Merge branch 'master' into nagpra-claim-qa
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-lee authored Sep 5, 2024
2 parents 748876c + 769ee9d commit 5f26348
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 19 deletions.
2 changes: 1 addition & 1 deletion src/plugins/recordTypes/summarydocumentation/columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default (configContext) => {

return {
default: {
referenceNumber: {
documentationNumber: {
messages: defineMessages({
label: {
id: 'column.summarydocumentation.default.documentationNumber',
Expand Down
35 changes: 19 additions & 16 deletions src/plugins/recordTypes/summarydocumentation/fields.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,17 +207,17 @@ export default (configContext) => {
messages: defineMessages({
fullName: {
id: 'field.summarydocumentations_common.involvedParty.fullName',
defaultMessage: 'Party involved name',
defaultMessage: 'Party involved person',
},
name: {
id: 'field.summarydocumentations_common.involvedParty.name',
defaultMessage: 'Name',
defaultMessage: 'Person',
},
}),
view: {
type: AutocompleteInput,
props: {
source: 'person/local,person/ulan',
source: 'person/local',
},
},
},
Expand All @@ -237,7 +237,7 @@ export default (configContext) => {
view: {
type: AutocompleteInput,
props: {
source: 'organization/local,organization/ulan',
source: 'organization/local',
},
},
},
Expand All @@ -264,17 +264,17 @@ export default (configContext) => {
},
},
},
culturalAffiliationGroupList: {
affiliationGroupList: {
[config]: {
view: {
type: CompoundInput,
},
},
culturalAffiliationGroup: {
affiliationGroup: {
[config]: {
messages: defineMessages({
name: {
id: 'field.summarydocumentations_common.culturalAffiliationGroup.name',
id: 'field.summarydocumentations_common.affiliationGroup.name',
defaultMessage: 'Summary affiliation',
},
}),
Expand All @@ -288,17 +288,17 @@ export default (configContext) => {
messages: defineMessages({
fullName: {
id: 'field.summarydocumentations_common.tribeOrNation.fullName',
defaultMessage: 'Summary affiliation tribe',
defaultMessage: 'Summary affiliation tribe/nation',
},
name: {
id: 'field.summarydocumentations_common.tribeOrNation.name',
defaultMessage: 'Tribe',
defaultMessage: 'Tribe/Nation',
},
}),
view: {
type: AutocompleteInput,
props: {
source: 'organization/local,organization/ulan',
source: 'organization/local',
},
},
},
Expand Down Expand Up @@ -345,7 +345,7 @@ export default (configContext) => {
view: {
type: AutocompleteInput,
props: {
source: 'person/local,person/ulan,organization/local,organization/ulan',
source: 'person/local,organization/local',
},
},
},
Expand Down Expand Up @@ -443,7 +443,10 @@ export default (configContext) => {
},
}),
view: {
type: TextInput,
type: TermPickerInput,
props: {
source: 'documentationgroup',
},
},
},
},
Expand All @@ -462,7 +465,7 @@ export default (configContext) => {
view: {
type: AutocompleteInput,
props: {
source: 'person/local,person/ulan',
source: 'person/local',
},
},
},
Expand All @@ -482,7 +485,7 @@ export default (configContext) => {
view: {
type: TermPickerInput,
props: {
source: 'nagprastatus',
source: 'nagpradocumentationstatus',
},
},
},
Expand Down Expand Up @@ -564,7 +567,7 @@ export default (configContext) => {
view: {
type: AutocompleteInput,
props: {
source: 'place/local,place/tgn',
source: 'place/local',
},
},
},
Expand Down Expand Up @@ -686,7 +689,7 @@ export default (configContext) => {
view: {
type: AutocompleteInput,
props: {
source: 'concept/ethculture',
source: 'concept/ethculture,concept/archculture',
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ const template = (configContext) => {
</Field>
</Field>

<Field name="culturalAffiliationGroupList">
<Field name="culturalAffiliationGroup">
<Field name="affiliationGroupList">
<Field name="affiliationGroup">
<Panel>
<Row>
<Field name="tribeOrNation" />
Expand Down

0 comments on commit 5f26348

Please sign in to comment.