Skip to content

Commit d28f44e

Browse files
committed
Implement feedback
1 parent 5a4e64d commit d28f44e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/register-action.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export const registerFindReplaceAction = (): Subscription => {
6060
description,
6161
steps: [
6262
{
63+
// fileFilter is a required property, but we want it to be a noop.
6364
fileFilter: () => true,
6465
editFile: (path, text) => {
6566
if (!text.includes(findString)) {
@@ -89,7 +90,7 @@ export const registerFindReplaceAction = (): Subscription => {
8990
})
9091
)
9192
sourcegraph.app.activeWindow!.showNotification(
92-
`[**Find-replace changes**](${applyURL}) are ready to preview and apply.<br/><br/><small>${diffStat.changed} changes made.</small>`,
93+
`[**Find-replace changes**](${applyURL}) are ready to preview and apply.\n\n<small>${diffStat.changed} changes made.</small>`,
9394
sourcegraph.NotificationType.Success
9495
)
9596
})

0 commit comments

Comments
 (0)