diff options
| author | Hannah Chow <hannah_chow@brown.edu> | 2019-03-02 17:24:27 -0500 |
|---|---|---|
| committer | Hannah Chow <hannah_chow@brown.edu> | 2019-03-02 17:24:27 -0500 |
| commit | e2556ab62787497d3fe23eea43358b24f0a75972 (patch) | |
| tree | 91fe082621721861d7fcac555c967e5945876532 /src/client/views/nodes/KeyValuePair.tsx | |
| parent | e36ce53aeb15b9d518b007fe34b5053026b43500 (diff) | |
| parent | bde8aabad7e5745b4797e73b564e4efb19faeca9 (diff) | |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into hannah_linking
Diffstat (limited to 'src/client/views/nodes/KeyValuePair.tsx')
| -rw-r--r-- | src/client/views/nodes/KeyValuePair.tsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/client/views/nodes/KeyValuePair.tsx b/src/client/views/nodes/KeyValuePair.tsx index ecdd47a1e..a97e98313 100644 --- a/src/client/views/nodes/KeyValuePair.tsx +++ b/src/client/views/nodes/KeyValuePair.tsx @@ -49,7 +49,10 @@ export class KeyValuePair extends React.Component<KeyValuePairProps> { selectOnLoad: false, } return ( - <tr className={this.props.rowStyle}><td>{this.key.Name}</td><td><FieldView {...props} /></td></tr> + <tr className={this.props.rowStyle}> + <td>{this.key.Name}</td> + <td><FieldView {...props} /></td> + </tr> ) } }
\ No newline at end of file |
