Skip to content

Commit

Permalink
fix #6840
Browse files Browse the repository at this point in the history
  • Loading branch information
rodyoukai committed Dec 7, 2024
1 parent c4f7023 commit f441894
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/javascripts/hyrax/collapse.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ function getStatusSettings(){
}
else if(isCollapsed){
resultDiv.classList.remove("in");
resultDiv.setAttribute("aria-expanded", "false");
// resultDiv.setAttribute("aria-expanded", "false");
}else{
resultDiv.classList.add("in");
resultDiv.setAttribute("aria-expanded", "true");
// resultDiv.setAttribute("aria-expanded", "true");
}
}

Expand Down

0 comments on commit f441894

Please sign in to comment.