mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
10a6ebb3fd
Fix #27928 --------- Co-authored-by: silverwind <me@silverwind.io>
10 lines
477 B
JavaScript
10 lines
477 B
JavaScript
export function initRepoPullRequestCommitStatus() {
|
|
for (const btn of document.querySelectorAll('.commit-status-hide-checks')) {
|
|
const panel = btn.closest('.commit-status-panel');
|
|
const list = panel.querySelector('.commit-status-list');
|
|
btn.addEventListener('click', () => {
|
|
list.style.maxHeight = list.style.maxHeight ? '' : '0px'; // toggle
|
|
btn.textContent = btn.getAttribute(list.style.maxHeight ? 'data-show-all' : 'data-hide-all');
|
|
});
|
|
}
|
|
}
|