diff options
author | Ernst Widerberg <ernst@sunet.se> | 2022-04-25 16:21:31 +0200 |
---|---|---|
committer | Ernst Widerberg <ernst@sunet.se> | 2022-04-25 16:21:31 +0200 |
commit | fece5a5d6f92da13224767e2b8a7c4dfdb266058 (patch) | |
tree | 4253b595f0fc1442c58685243fedb7a160911b7c /src/components/ListItem.js | |
parent | a628c050adf15ac6d4f0c1939856913e9ad3ba58 (diff) |
Bugfix
Diffstat (limited to 'src/components/ListItem.js')
-rw-r--r-- | src/components/ListItem.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ListItem.js b/src/components/ListItem.js index 43a5513..292d093 100644 --- a/src/components/ListItem.js +++ b/src/components/ListItem.js @@ -29,18 +29,18 @@ class ListItem extends React.Component { {this.props.ip}:{this.props.port} </td> <td>{this.props.domain}</td> - <td>{this.props.system_name}</td> + <td>{this.props.display_name}</td> <td style={{ paddingRight: 0 }}> <Card - className={resultClassName(this.props)} + className={resultClassName(this.props.result)} variant="outlined" > - {this.props.display_name} + {this.props.result.display_name} </Card> </td> <td style={{ paddingLeft: 0 }}> <Card className="reliability" variant="outlined"> - {this.props.reliability} + {this.props.result.reliability} </Card> </td> <td> |