File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
silk-react-components/src/HierarchicalMapping/elements Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ import { NotAvailable } from '@eccenca/gui-elements';
4
4
import { ThingName } from '../components/ThingName' ;
5
5
6
6
import {
7
- MAPPING_RULE_TYPE_ROOT ,
7
+ MAPPING_RULE_TYPE_COMPLEX_URI ,
8
+ MAPPING_RULE_TYPE_ROOT , MAPPING_RULE_TYPE_URI ,
8
9
} from '../utils/constants' ;
9
10
import { MAPPING_RULE_TYPE_COMPLEX , MAPPING_RULE_TYPE_DIRECT , MAPPING_RULE_TYPE_OBJECT } from '../utils/constants' ;
10
11
@@ -35,7 +36,12 @@ const RuleTitle = ({ rule, ...otherProps }) => {
35
36
) : (
36
37
< NotAvailable />
37
38
) ;
39
+ case MAPPING_RULE_TYPE_URI :
40
+ case MAPPING_RULE_TYPE_COMPLEX_URI :
41
+ return < span > uri</ span >
38
42
}
43
+
44
+ return < NotAvailable /> ;
39
45
} ;
40
46
41
47
export default RuleTitle ;
You can’t perform that action at this time.
0 commit comments