Skip to content

Commit

Permalink
Fixed Relationships labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Oliveira committed Sep 28, 2023
1 parent 07d85cb commit 6f99949
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,7 @@ const RelationshipView: React.FC<RelationshipViewProps> = ({
<div className={styles.relationship}>
<div className={styles.searchBox}>
<div className={styles.relationshipHeader}>
<h4 className={styles.productiveHeading}>
{relationship?.relation ?? t('relationshipPlaceholder', 'Relationship')}
</h4>
<h4 className={styles.productiveHeading}>{t('relationshipPlaceholder', 'Relationship')}</h4>
<Button
kind="ghost"
iconDescription={t('deleteRelationshipTooltipText', 'Delete')}
Expand Down Expand Up @@ -163,12 +161,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 6f99949

Please sign in to comment.