Skip to content

Commit

Permalink
EPMRPP-78881 || Add link to Documentation in Defect Types. Project Se…
Browse files Browse the repository at this point in the history
…ttings (#3627)
  • Loading branch information
BlazarQSO authored Oct 30, 2023
1 parent 684c27b commit 35c3aac
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ export const DefectTypes = ({ setHeaderTitleNode }) => {
);
};

const handleDocumentationClick = ({ tagName }) => {
const handleDocumentationClick = (event) => {
const { tagName } = event.target;

if (tagName === 'A') {
trackEvent(PROJECT_SETTINGS_DEFECT_TYPES_EVENTS.CLICK_DOCUMENTATION_LINK);
}
Expand Down

0 comments on commit 35c3aac

Please sign in to comment.