Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GLT-3987] Removed QC report button from requisition details #155

Merged
merged 3 commits into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/fix_qcReportButton
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Removed QC report button from Requisition Details page
4 changes: 3 additions & 1 deletion ts/details.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ switch (tableContainer.getAttribute("data-detail-type")) {
}
const copyButton = makeCopyButton(requisitionName);
titleMisoLink.parentNode?.insertBefore(copyButton, titleMisoLink);
break;
}
case "CASE_ID": {
// add QC Report button
Expand Down Expand Up @@ -103,5 +104,6 @@ switch (tableContainer.getAttribute("data-detail-type")) {
button.onclick = (event) =>
(window.location.href = urls.dimsum.caseQcReport(caseId));
actionContainer.appendChild(button);
break;
}
}
}