From da15a02e1168a446c84917270a2007dc7e7ade1c Mon Sep 17 00:00:00 2001 From: Revertron <105154+Revertron@users.noreply.github.com> Date: Thu, 15 Apr 2021 10:26:05 +0200 Subject: [PATCH] Fixed a string --- src/web_ui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web_ui.rs b/src/web_ui.rs index d1442d6..a052c29 100644 --- a/src/web_ui.rs +++ b/src/web_ui.rs @@ -207,7 +207,7 @@ fn action_loaded(context: &Arc>, web_view: &mut WebView<()>) { Event::KeyCreated { path, public, hash } => { event_handle_luck(&handle, "Key successfully created! Don\\'t forget to save it!"); let mut s = format!("keystoreChanged('{}', '{}', '{}');", &path, &public, &hash); - s.push_str(" showSuccess('You\\'ve got a new key! Don\\'t forget to save it!')"); + s.push_str(" showSuccess('New key mined successfully! Save it to a safe place!')"); s } Event::KeyLoaded { path, public, hash } |