File tree Expand file tree Collapse file tree
web/client/components/data/identify/viewers/row Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,10 +44,9 @@ class PropertiesViewer extends React.Component {
4444 }
4545 } ;
4646
47-
4847 getBodyItems = ( ) => {
4948 return Object . keys ( this . props )
50- . filter ( this . toExlude )
49+ . filter ( this . toExclude )
5150 . map ( ( key ) => {
5251 const val = this . renderProperty ( this . props [ key ] ) ;
5352 return < p key = { key } style = { this . props . listStyle } > < b > { key } </ b > { containsHTML ( val ) ? < span dangerouslySetInnerHTML = { { __html : val } } /> : val } </ p > ;
@@ -87,6 +86,7 @@ class PropertiesViewer extends React.Component {
8786 }
8887 return JSON . stringify ( prop ) ;
8988 } ;
89+
9090 render ( ) {
9191 return (
9292 < div style = { this . props . componentStyle } >
@@ -96,7 +96,7 @@ class PropertiesViewer extends React.Component {
9696 ) ;
9797 }
9898
99- toExlude = ( propName ) => {
99+ toExclude = ( propName ) => {
100100 return alwaysExcluded
101101 . concat ( this . props . exclude )
102102 . indexOf ( propName ) === - 1 ;
You can’t perform that action at this time.
0 commit comments