Skip to content

Commit

Permalink
(fix) Use localised relationship labels (#773)
Browse files Browse the repository at this point in the history
Co-authored-by: Luis Oliveira <[email protected]>
  • Loading branch information
icrc-loliveira and Luis Oliveira authored Aug 1, 2023
1 parent 322db0b commit 7a2237d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ export const RelationshipsSection = () => {
const tmp: RelationshipType[] = [];
relationshipTypes.results.forEach((type) => {
const aIsToB = {
display: type.aIsToB,
display: type.displayAIsToB,
uuid: type.uuid,
direction: 'aIsToB',
};
const bIsToA = {
display: type.bIsToA,
display: type.displayBIsToA,
uuid: type.uuid,
direction: 'bIsToA',
};
Expand Down

0 comments on commit 7a2237d

Please sign in to comment.