Skip to content

Commit

Permalink
fix: hide the drilldown of QE FHIR tech-by-design#239
Browse files Browse the repository at this point in the history
  • Loading branch information
megin1989 committed Aug 13, 2024
1 parent 7869fae commit 12ee7e1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion hub-prime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>org.techbd</groupId>
<artifactId>hub-prime</artifactId>
<version>0.160.0</version>
<version>0.161.0</version>
<packaging>war</packaging>
<name>TechBD Hub (Prime)</name>
<description>TechBD Hub (Primary)</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@
button.innerText = params.data.qe_total_submissions;
button.style.marginLeft = '5px';

container.appendChild(arrow);
container.appendChild(button);
// container.appendChild(arrow);
container.appendChild(button);

container.addEventListener('click', () => {
// Set buttonPressed before expanding
params.node.data.buttonPressed = 'qe_total_submissions';
params.node.setExpanded(!params.node.expanded);
arrow.innerText = params.node.expanded ? '▼' : '▶';
});
// container.addEventListener('click', () => {
// // Set buttonPressed before expanding
// params.node.data.buttonPressed = 'qe_total_submissions';
// params.node.setExpanded(!params.node.expanded);
// arrow.innerText = params.node.expanded ? '▼' : '▶';
// });

return container;
}
Expand Down Expand Up @@ -96,7 +96,7 @@

function qeNameCellRenderer(params) {
const qeName = params.data.qe_name;
const link = `/data-quality/needs-attention-details?qeName=${qeName}`;
const link = `/data-quality/needs-attention?qeName=${qeName}`;
//return `<a href="${link}">${qeName}</a>`;
return `${qeName}`;
}
Expand Down

0 comments on commit 12ee7e1

Please sign in to comment.