From 0a0649307ec342ec2b2def067cc12aeb587731b0 Mon Sep 17 00:00:00 2001 From: David Disu Date: Mon, 15 Mar 2021 13:10:36 +0100 Subject: [PATCH] Update remixd modal (#971) Fixes https://github.com/ethereum/remix-project/issues/963 --- apps/remix-ide/src/app/files/remixd-handle.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/remix-ide/src/app/files/remixd-handle.js b/apps/remix-ide/src/app/files/remixd-handle.js index fb6d455514..73746fa03a 100644 --- a/apps/remix-ide/src/app/files/remixd-handle.js +++ b/apps/remix-ide/src/app/files/remixd-handle.js @@ -64,7 +64,7 @@ export class RemixdHandle extends WebsocketPlugin { if (error) { console.log(error) modalDialogCustom.alert( - 'Cannot connect to the remixd daemon.' + + 'Cannot connect to the remixd daemon. ' + 'Please make sure you have the remixd running in the background.' ) this.canceled() @@ -74,7 +74,7 @@ export class RemixdHandle extends WebsocketPlugin { clearInterval(intervalId) console.log(error) modalDialogCustom.alert( - 'Connection to remixd terminated' + + 'Connection to remixd terminated. ' + 'Please make sure remixd is still running in the background.' ) this.canceled()