Fix undefined scan results
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -7,10 +7,12 @@ import Moment from 'react-moment'
|
|||||||
class Table extends Component {
|
class Table extends Component {
|
||||||
constructor ({ scanResults, t }) {
|
constructor ({ scanResults, t }) {
|
||||||
super()
|
super()
|
||||||
this.scanResults = scanResults && scanResults.map(row => ({
|
this.scanResults = scanResults
|
||||||
...row,
|
? scanResults.map(row => ({
|
||||||
id: row._id
|
...row,
|
||||||
}))
|
id: row._id
|
||||||
|
}))
|
||||||
|
: []
|
||||||
this.columns = [
|
this.columns = [
|
||||||
{
|
{
|
||||||
field: 'name',
|
field: 'name',
|
||||||
|
|||||||
Reference in New Issue
Block a user