Skip to content

Commit e0c7f19

Browse files
Update app.js
1 parent 70975c5 commit e0c7f19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ function minMaxReports() {
163163
const button = document.getElementById("min-max");
164164
if (reportList.style.display == "block") {
165165
reportList.style.display = "none";
166-
button.setAttribute('Maximise Reports');
166+
button.innerHTML = 'Maximise Reports';
167167
} else {
168168
reportList.style.display = "block";
169-
button.setAttribute('Minimise Reports');
169+
button.innerHTML = 'Minimise Reports';
170170
}
171171
}

0 commit comments

Comments
 (0)