Skip to content

Commit 980ab9b

Browse files
committed
of type
1 parent 9dcd831 commit 980ab9b

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

backend/reviews/templates/proposals-recap.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
const bottomBar = document.querySelector('.reviews-bottom-bar');
198198
const toggleIcon = document.getElementById('toggle-icon');
199199
const toggleButton = document.getElementById('bottom-bar-toggle');
200-
200+
201201
if (bottomBar && toggleIcon && toggleButton) {
202202
if (bottomBarHidden) {
203203
bottomBar.classList.add('hidden');
@@ -206,7 +206,7 @@
206206
} else {
207207
toggleButton.setAttribute('aria-expanded', 'true');
208208
}
209-
209+
210210
toggleButton.addEventListener('click', toggleBottomBar);
211211
}
212212

@@ -358,22 +358,22 @@
358358
const bottomBar = document.querySelector('.reviews-bottom-bar');
359359
const toggleIcon = document.getElementById('toggle-icon');
360360
const toggleButton = document.getElementById('bottom-bar-toggle');
361-
361+
362362
if (!bottomBar || !toggleIcon || !toggleButton) {
363363
console.warn('Required elements for bottom bar toggle not found');
364364
return;
365365
}
366-
366+
367367
bottomBar.classList.toggle('hidden');
368-
368+
369369
if (bottomBar.classList.contains('hidden')) {
370370
toggleIcon.textContent = '▲';
371371
toggleButton.setAttribute('aria-expanded', 'false');
372372
} else {
373373
toggleIcon.textContent = '▼';
374374
toggleButton.setAttribute('aria-expanded', 'true');
375375
}
376-
376+
377377
// Save preference in localStorage
378378
localStorage.setItem('proposalsBottomBarHidden', bottomBar.classList.contains('hidden'));
379379
};
@@ -406,7 +406,7 @@ <h3>Show proposals with pending status:</h3>
406406
</div>
407407
</div>
408408
<div class="opt-filter">
409-
<h3>Show proposals with type:</h3>
409+
<h3>Show proposals of type:</h3>
410410
<div>
411411
{% for submission_type in submission_types %}
412412
<label>

0 commit comments

Comments
 (0)