We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70975c5 commit e0c7f19Copy full SHA for e0c7f19
app.js
@@ -163,9 +163,9 @@ function minMaxReports() {
163
const button = document.getElementById("min-max");
164
if (reportList.style.display == "block") {
165
reportList.style.display = "none";
166
- button.setAttribute('Maximise Reports');
+ button.innerHTML = 'Maximise Reports';
167
} else {
168
reportList.style.display = "block";
169
- button.setAttribute('Minimise Reports');
+ button.innerHTML = 'Minimise Reports';
170
}
171
0 commit comments