eslinter fix

This commit is contained in:
Victor Baranov 2019-08-22 19:59:36 +03:00
parent e0f0146314
commit 2a29b6c49d
1 changed files with 7 additions and 7 deletions

View File

@ -206,27 +206,27 @@ class ConfigScreen extends Component {
style: {
display: 'table',
width: '100%',
}
},
}, [
h('div', {
style: {
display: 'table-cell',
}},[
h('p.config-description', 'Switch to Decentralized Provider (Pocket)')
}}, [
h('p.config-description', 'Switch to Decentralized Provider (Pocket)'),
]),
h('div', { style: {
display: 'table-cell',
}},[
}}, [
h('input', {
type:'checkbox',
name:'pocket-checkbox',
type: 'checkbox',
name: 'pocket-checkbox',
checked: this.state.dProvider,
onChange: (event) => {
event.preventDefault()
this.toggleProvider()
},
}),
])
]),
]),
h('hr.horizontal-line'),