From 0108b78c5e3ed16b0d776e08986e3a360de91e89 Mon Sep 17 00:00:00 2001 From: Whymarrh Whitby Date: Tue, 20 Aug 2019 17:36:03 -0230 Subject: [PATCH] Fix indentation of div.request-signature__rows code --- ui/app/components/app/signature-request.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ui/app/components/app/signature-request.js b/ui/app/components/app/signature-request.js index 039485f88919..16073d5d3bdc 100644 --- a/ui/app/components/app/signature-request.js +++ b/ui/app/components/app/signature-request.js @@ -269,16 +269,16 @@ SignatureRequest.prototype.renderBody = function () { h('div.request-signature__rows', type === 'eth_signTypedData' && (version === 'V3' || version === 'V4') ? - this.renderTypedData(data) : - rows.map(({ name, value }) => { - if (typeof value === 'boolean') { - value = value.toString() - } - return h('div.request-signature__row', [ - h('div.request-signature__row-title', [`${name}:`]), - h('div.request-signature__row-value', value), - ]) - }), + this.renderTypedData(data) : + rows.map(({ name, value }) => { + if (typeof value === 'boolean') { + value = value.toString() + } + return h('div.request-signature__row', [ + h('div.request-signature__row-title', [`${name}:`]), + h('div.request-signature__row-value', value), + ]) + }), ), ]) }