--- a/browser/components/urlbar/UrlbarView.sys.mjs
+++ b/browser/components/urlbar/UrlbarView.sys.mjs
@@ -1374,17 +1374,17 @@ export class UrlbarView {
(oldResultType == lazy.UrlbarUtils.RESULT_TYPE.DYNAMIC &&
result.type == lazy.UrlbarUtils.RESULT_TYPE.DYNAMIC &&
oldResult.payload.dynamicType != result.payload.dynamicType) ||
// Dynamic results that implement getViewTemplate will
// always need updating.
provider.getViewTemplate ||
oldResult.isBestMatch != result.isBestMatch ||
(!lazy.UrlbarPrefs.get("resultMenu") &&
- (!!result.payload.helpUrl != item._buttons.has("block") ||
+ (!!result.payload.helpUrl != item._buttons.has("help") ||
!!result.payload.isBlockable != item._buttons.has("block"))) ||
!!this.#getResultMenuCommands(result) != item._buttons.has("menu") ||
!lazy.ObjectUtils.deepEqual(
oldResult.payload.buttons,
result.payload.buttons
);
if (needsNewContent) {