fixed lint

This commit is contained in:
snoop 2017-07-19 19:51:53 +09:00
parent 402adebb44
commit 8beaf58578
3 changed files with 18 additions and 18 deletions

View File

@ -25,7 +25,7 @@ export class PWChange extends React.Component<any, any> {
}
onSubmit = () => {
public onSubmit = () => {
console.log(this.state);
}

View File

@ -33,12 +33,12 @@ export class SignUp extends React.Component<any, any> {
}
onSubmit = () => {
public onSubmit = () => {
console.log(this.state)
}
onChange = (event: React.SyntheticEvent<HTMLInputElement>, data: InputOnChangeData) => {
public onChange = (event: React.SyntheticEvent<HTMLInputElement>, data: InputOnChangeData) => {
}

View File

@ -21,24 +21,24 @@ export class DiscoveryDetails extends React.Component<any, any> {
componentWillMount() {
this.probeTemp =
{
"id": "11",
"metaProbeStatus": {
"name": "STARTED"
'id': '11',
'metaProbeStatus': {
'name': 'STARTED'
},
"domain": {
"name": "overFlow's domain111"
'domain': {
'name': 'overFlow\'s domain111'
},
"host": {
"ip": "192.168.1.103",
"mac": "44:8a:5b:44:8c:e8",
"os": "Ubuntu 17.04",
"name": "?????"
'host': {
'ip': '192.168.1.103',
'mac': '44:8a:5b:44:8c:e8',
'os': 'Ubuntu 17.04',
'name': '?????'
},
"createAt": "2017-07-12",
"probeKey": "AGBLKDFJ2452ASDGFL2KWJLKSDJ",
"description": "description1111111111",
"lastPollingAt": "2017-07-12 14:20",
"nextPollingAt": "2017-07-12 14:30"
'createAt': '2017-07-12',
'probeKey': 'AGBLKDFJ2452ASDGFL2KWJLKSDJ',
'description': 'description1111111111',
'lastPollingAt': '2017-07-12 14:20',
'nextPollingAt': '2017-07-12 14:30'
};
}