Skip to content

Commit

Permalink
naming consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
erwindon committed Apr 27, 2024
1 parent 94d8ba5 commit 0c1f28c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions saltgui/static/scripts/issues/Issues.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ export class Issues {
});

if (pTr.hasClick !== true) {
pTr.addEventListener("click", (ClickEvent) => {
pTr.addEventListener("click", (pClickEvent) => {
pTr.panel.runCommand("", pTarget, pCommand);
ClickEvent.stopPropagation();
pClickEvent.stopPropagation();
});
}
pTr.hasClick = true;
Expand All @@ -103,9 +103,9 @@ export class Issues {
});

if (pTr.hasClick !== true) {
pTr.addEventListener("click", (ClickEvent) => {
pTr.addEventListener("click", (pClickEvent) => {
pTr.panel.router.goTo(pPage, pArgs);
ClickEvent.stopPropagation();
pClickEvent.stopPropagation();
});
}
pTr.hasClick = true;
Expand Down

0 comments on commit 0c1f28c

Please sign in to comment.