diff --git a/e2e-tests/cypress/tests/integration/channels/system_console/site_configuration/link_customization_e20_1_spec.js b/e2e-tests/cypress/tests/integration/channels/system_console/site_configuration/link_customization_e20_1_spec.js
index 991893f298..8e542c5a9e 100644
--- a/e2e-tests/cypress/tests/integration/channels/system_console/site_configuration/link_customization_e20_1_spec.js
+++ b/e2e-tests/cypress/tests/integration/channels/system_console/site_configuration/link_customization_e20_1_spec.js
@@ -140,7 +140,7 @@ describe('SupportSettings', () => {
cy.uiOpenProductMenu().within(() => {
// * Verify that 'Download Apps' has expected link
cy.findByText('Download Apps').
- parent().
+ parents('a').
should('have.attr', 'href', link);
});
});
diff --git a/webapp/channels/src/components/global_header/left_controls/product_menu/product_menu_item/product_menu_item.tsx b/webapp/channels/src/components/global_header/left_controls/product_menu/product_menu_item/product_menu_item.tsx
index ade857940f..d0699d9ce1 100644
--- a/webapp/channels/src/components/global_header/left_controls/product_menu/product_menu_item/product_menu_item.tsx
+++ b/webapp/channels/src/components/global_header/left_controls/product_menu/product_menu_item/product_menu_item.tsx
@@ -61,6 +61,7 @@ const ProductMenuItem = ({icon, destination, text, active, onClick, tourTip, id}
to={destination}
onClick={onClick}
id={id}
+ role='menuitem'
>
-
-
+ )}
+
{postAcknowledgementsEnabled && (