eslint fixes

This commit is contained in:
vbaranov 2018-10-30 13:47:59 +03:00
parent 5cbcd2f4f0
commit 50431d8e48
6 changed files with 21 additions and 21 deletions

View File

@ -35,19 +35,19 @@ PendingMsgDetails.prototype.render = function () {
account: account,
imageifyIdenticons: state.imageifyIdenticons,
style: {
background: 'transparent'
}
background: 'transparent',
},
}),
// message data
h('.tx-data.flex-column.flex-justify-center.flex-grow.select-none', {
style: {
margin: '0 30px'
}
margin: '0 30px',
},
}, [
h('.flex-column.flex-space-between', [
h('label.font-small', {
style: { color: 'white', margin: '10px 0' }
style: { color: 'white', margin: '10px 0' },
}, 'MESSAGE'),
h('span.font-small', {style: {color: 'white', wordBreak: 'break-word'}}, msgParams.data),
]),

View File

@ -19,8 +19,8 @@ PendingMsg.prototype.render = function () {
h('div', {
key: msgData.id,
style: {
height: '100%'
}
height: '100%',
},
}, [
// header
@ -54,11 +54,11 @@ PendingMsg.prototype.render = function () {
marginRight: '30px',
float: 'right',
display: 'block',
}
},
}, [
h('button', {
style: {
marginRight: '10px'
marginRight: '10px',
},
onClick: state.cancelMessage,
}, 'Cancel'),

View File

@ -38,8 +38,8 @@ PendingMsgDetails.prototype.render = function () {
account: account,
imageifyIdenticons: state.imageifyIdenticons,
style: {
background: 'transparent'
}
background: 'transparent',
},
}),
// message data

View File

@ -19,8 +19,8 @@ PendingMsg.prototype.render = function () {
h('div', {
key: msgData.id,
style: {
height: '100%'
}
height: '100%',
},
}, [
// header
@ -42,11 +42,11 @@ PendingMsg.prototype.render = function () {
marginRight: '30px',
float: 'right',
display: 'block',
}
},
}, [
h('button', {
style: {
marginRight: '10px'
marginRight: '10px',
},
onClick: state.cancelPersonalMessage,
}, 'Cancel'),

View File

@ -38,8 +38,8 @@ PendingMsgDetails.prototype.render = function () {
account: account,
imageifyIdenticons: state.imageifyIdenticons,
style: {
background: 'transparent'
}
background: 'transparent',
},
}),
// message data

View File

@ -19,8 +19,8 @@ PendingMsg.prototype.render = function () {
h('div', {
key: msgData.id,
style: {
height: '100%'
}
height: '100%',
},
}, [
// header
@ -42,11 +42,11 @@ PendingMsg.prototype.render = function () {
marginRight: '30px',
float: 'right',
display: 'block',
}
},
}, [
h('button', {
style: {
marginRight: '10px'
marginRight: '10px',
},
onClick: state.cancelTypedMessage,
}, 'Cancel'),