From b60992b446098c035449bad9af7263b44d9719c6 Mon Sep 17 00:00:00 2001 From: Frankie Date: Thu, 10 Nov 2016 22:13:30 -0800 Subject: Fix funny looking errors in conf-tx --- ui/app/conf-tx.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ui/app/conf-tx.js') diff --git a/ui/app/conf-tx.js b/ui/app/conf-tx.js index f4ca52860..d76231af5 100644 --- a/ui/app/conf-tx.js +++ b/ui/app/conf-tx.js @@ -170,6 +170,9 @@ function warningIfExists (warning) { if (warning && // Do not display user rejections on this screen: warning.indexOf('User denied transaction signature') === -1) { - return h('span.error', { style: { margin: 'auto' } }, warning) + return h('.error', { + style: { + margin: 'auto', + }}, warning) } } -- cgit v1.2.3 From b60f51dfc2d63bbb0cc8f255699e99ef5e1f0508 Mon Sep 17 00:00:00 2001 From: Frankie Date: Thu, 10 Nov 2016 22:20:58 -0800 Subject: lint fix --- ui/app/conf-tx.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ui/app/conf-tx.js') diff --git a/ui/app/conf-tx.js b/ui/app/conf-tx.js index d76231af5..8d23adfe5 100644 --- a/ui/app/conf-tx.js +++ b/ui/app/conf-tx.js @@ -173,6 +173,7 @@ function warningIfExists (warning) { return h('.error', { style: { margin: 'auto', - }}, warning) + }, + }, warning) } } -- cgit v1.2.3