@@ -55,7 +55,7 @@ const AttributeInfo = ({ attribute }) => {
5555 {
5656 extendAttributes && attributes . map ( ( attribute , index ) => (
5757 < p className = "mb-1" key = { index } >
58- < CodeLink className = "code- domain" uri = { attribute . uri } onClick = { ( ) => fetchAttribute ( attribute ) } />
58+ < CodeLink type = " domain" uri = { attribute . uri } onClick = { ( ) => fetchAttribute ( attribute ) } />
5959 </ p >
6060 ) )
6161 }
@@ -69,7 +69,7 @@ const AttributeInfo = ({ attribute }) => {
6969 {
7070 extendConditions && conditions . map ( ( condition , index ) => (
7171 < p key = { index } >
72- < CodeLink className = "code- conditions" uri = { condition . uri } onClick = { ( ) => fetchCondition ( condition ) } />
72+ < CodeLink type = " conditions" uri = { condition . uri } onClick = { ( ) => fetchCondition ( condition ) } />
7373 </ p >
7474 ) )
7575 }
@@ -83,7 +83,7 @@ const AttributeInfo = ({ attribute }) => {
8383 {
8484 extendPages && pages . map ( ( page , index ) => (
8585 < p className = "mb-1" key = { index } >
86- < CodeLink className = "code- questions" uri = { page . uri } onClick = { ( ) => fetchPage ( page ) } />
86+ < CodeLink type = " questions" uri = { page . uri } onClick = { ( ) => fetchPage ( page ) } />
8787 </ p >
8888 ) )
8989 }
@@ -97,7 +97,7 @@ const AttributeInfo = ({ attribute }) => {
9797 {
9898 extendQuestionSets && questionsets . map ( ( questionset , index ) => (
9999 < p className = "mb-1" key = { index } >
100- < CodeLink className = "code- questions" uri = { questionset . uri } onClick = { ( ) => fetchQuestionSet ( questionset ) } />
100+ < CodeLink type = " questions" uri = { questionset . uri } onClick = { ( ) => fetchQuestionSet ( questionset ) } />
101101 </ p >
102102 ) )
103103 }
@@ -111,7 +111,7 @@ const AttributeInfo = ({ attribute }) => {
111111 {
112112 extendQuestions && questions . map ( ( question , index ) => (
113113 < p className = "mb-1" key = { index } >
114- < CodeLink className = "code- questions" uri = { question . uri } onClick = { ( ) => fetchQuestion ( question ) } />
114+ < CodeLink type = " questions" uri = { question . uri } onClick = { ( ) => fetchQuestion ( question ) } />
115115 </ p >
116116 ) )
117117 }
@@ -125,7 +125,7 @@ const AttributeInfo = ({ attribute }) => {
125125 {
126126 extendTasks && tasks . map ( ( task , index ) => (
127127 < p className = "mb-1" key = { index } >
128- < CodeLink className = "code- tasks" uri = { task . uri } onClick = { ( ) => fetchTask ( task ) } />
128+ < CodeLink type = " tasks" uri = { task . uri } onClick = { ( ) => fetchTask ( task ) } />
129129 </ p >
130130 ) )
131131 }
0 commit comments