Skip to content

Commit 2a30b87

Browse files
committed
Merge remote-tracking branch 'origin/fix/uriRuleReport-CMEM-3790' into release/3.6.0
2 parents 119da0c + 79b6360 commit 2a30b87

File tree

1 file changed

+7
-1
lines changed
  • silk-react-components/src/HierarchicalMapping/elements

1 file changed

+7
-1
lines changed

silk-react-components/src/HierarchicalMapping/elements/RuleTitle.jsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { NotAvailable } from '@eccenca/gui-elements';
44
import { ThingName } from '../components/ThingName';
55

66
import {
7-
MAPPING_RULE_TYPE_ROOT,
7+
MAPPING_RULE_TYPE_COMPLEX_URI,
8+
MAPPING_RULE_TYPE_ROOT, MAPPING_RULE_TYPE_URI,
89
} from '../utils/constants';
910
import { MAPPING_RULE_TYPE_COMPLEX, MAPPING_RULE_TYPE_DIRECT, MAPPING_RULE_TYPE_OBJECT } from '../utils/constants';
1011

@@ -35,7 +36,12 @@ const RuleTitle = ({ rule, ...otherProps }) => {
3536
) : (
3637
<NotAvailable />
3738
);
39+
case MAPPING_RULE_TYPE_URI:
40+
case MAPPING_RULE_TYPE_COMPLEX_URI:
41+
return <span>uri</span>
3842
}
43+
44+
return <NotAvailable />;
3945
};
4046

4147
export default RuleTitle;

0 commit comments

Comments
 (0)