From 3b37db4140349d4120a4724afa9c41c429efd49b Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Thu, 12 Sep 2024 14:17:59 -0400 Subject: [PATCH] Improve button copy on database load error toast (#17767) Minimal copywriting improvement as that just happened to me while working on Zed during ReactConf. Release Notes: - N/A --- crates/workspace/src/workspace.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/workspace/src/workspace.rs b/crates/workspace/src/workspace.rs index e6358cfdb955958eb17408b4b0fb0aee5bb47999..0d774277944c0222803590a1a6b6adaa74d9a84c 100644 --- a/crates/workspace/src/workspace.rs +++ b/crates/workspace/src/workspace.rs @@ -4644,7 +4644,7 @@ fn notify_if_database_failed(workspace: WindowHandle, cx: &mut AsyncA |cx| { cx.new_view(|_| { MessageNotification::new("Failed to load the database file.") - .with_click_message("Click to let us know about this error") + .with_click_message("File an issue") .on_click(|cx| cx.open_url(REPORT_ISSUE_URL)) }) },