-
Notifications
You must be signed in to change notification settings - Fork 879
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove Provide More Details link from crashes window
fixes brave/brave-browser#889
- Loading branch information
1 parent
308acaa
commit 4b1707b
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
patches/components-crash-core-browser-resources-crashes.js.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/components/crash/core/browser/resources/crashes.js b/components/crash/core/browser/resources/crashes.js | ||
index dbd2ae8df59756c61d28091cff70098c897db8f4..3a9c6ccd50f5a4baf9d8fb7aaf1b21558f3de07e 100644 | ||
--- a/components/crash/core/browser/resources/crashes.js | ||
+++ b/components/crash/core/browser/resources/crashes.js | ||
@@ -113,7 +113,7 @@ function updateCrashList( | ||
link.target = '_blank'; | ||
link.textContent = loadTimeData.getString('bugLinkText'); | ||
linkBlock.appendChild(link); | ||
- crashBlock.appendChild(linkBlock); | ||
+ //crashBlock.appendChild(linkBlock); // feature disabled in Brave | ||
} else { | ||
if (crash.state == 'pending_user_requested') | ||
var textContentKey = 'crashUserRequested'; |