From 38b966ebecc5f557793474084626875f66cf423b Mon Sep 17 00:00:00 2001 From: Vit Stanislav Date: Mon, 28 Aug 2017 16:13:45 +0200 Subject: [PATCH 1/2] Change "Report issue..." to go to Zendesk, not Github - Closes #664 --- app/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.js b/app/main.js index d738b640d..d998d7efa 100644 --- a/app/main.js +++ b/app/main.js @@ -103,7 +103,7 @@ function createWindow() { { label: 'Report Issue...', click() { - electron.shell.openExternal('https://github.com/LiskHQ/lisk-nano/issues/new'); + electron.shell.openExternal('https://lisk.zendesk.com/hc/en-us/requests/new'); }, }, { From fad75fe9398ab556330036d96e3c77c8524ee85f Mon Sep 17 00:00:00 2001 From: Vit Stanislav Date: Mon, 28 Aug 2017 16:34:33 +0200 Subject: [PATCH 2/2] Fix eslint --- src/components/liskAmount/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/liskAmount/index.js b/src/components/liskAmount/index.js index 2ceb9add7..1b7c869dc 100644 --- a/src/components/liskAmount/index.js +++ b/src/components/liskAmount/index.js @@ -6,7 +6,7 @@ const roundTo = (value, places) => { if (!places) { return value; } - const x = Math.pow(10, places); + const x = 10 ** places; return Math.round(value * x) / x; };