Fixed no db on build error
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-07-03 17:27:35 +03:00
parent e13d6a7f4a
commit 9387994d6d

View File

@@ -7,7 +7,7 @@ import Moment from 'react-moment'
class Table extends Component { class Table extends Component {
constructor ({ scanResults, t }) { constructor ({ scanResults, t }) {
super() super()
this.scanResults = scanResults.map(row => ({ this.scanResults = scanResults && scanResults.map(row => ({
...row, ...row,
id: row._id id: row._id
})) }))