forked from p15670423/monkey
island: Fix eslint warnings (trailing comma and double quotes)
This commit is contained in:
parent
5a4f66d080
commit
748bca43e9
|
@ -40,7 +40,7 @@ class T1086 extends React.Component {
|
||||||
Header: 'Machine',
|
Header: 'Machine',
|
||||||
id: 'machine',
|
id: 'machine',
|
||||||
accessor: x => renderMachineFromSystemData(x.machine),
|
accessor: x => renderMachineFromSystemData(x.machine),
|
||||||
style: {'whiteSpace': 'unset'},
|
style: {'whiteSpace': 'unset'}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Header: 'Information',
|
Header: 'Information',
|
||||||
|
@ -65,8 +65,8 @@ class T1086 extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
let data_from_exploits = this.getPowershellDataPerCategory("exploit");
|
let data_from_exploits = this.getPowershellDataPerCategory('exploit');
|
||||||
let data_from_pbas = this.getPowershellDataPerCategory("post_breach");
|
let data_from_pbas = this.getPowershellDataPerCategory('post_breach');
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
|
Loading…
Reference in New Issue