Skip to content

Commit d751b84

Browse files
committed
fix "edit regex" button of find Related mail #488
1 parent 5dacfe2 commit d751b84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

html/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ async function initButtons() {
884884
}
885885
}
886886

887-
encodedRegex = searchValue ? encodeURIComponent(searchValue) : "enter search pattern";
887+
const encodedRegex = searchValue ? encodeURIComponent(searchValue) : "enter search pattern";
888888
if (searchFlags) {
889889
flagsParam = "&flags=" + encodeURIComponent(searchFlags);
890890
}

0 commit comments

Comments
 (0)