Improve button copy on database load error toast (#17767)

Danilo Leal created

Minimal copywriting improvement as that just happened to me while
working on Zed during ReactConf.

Release Notes:

- N/A

Change summary

crates/workspace/src/workspace.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/workspace/src/workspace.rs 🔗

@@ -4644,7 +4644,7 @@ fn notify_if_database_failed(workspace: WindowHandle<Workspace>, 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))
                         })
                     },