Add missing parentheses to external user statistics slider
Previously, no space was present for the `- 1`, changing the semantics. After linting with 9a9efd5c
, a space was added, which requires parentheses.
This commit is contained in:

committed by
Dominic Sauer

parent
189f9e28d7
commit
c6d077ecfe
@ -29,7 +29,7 @@ h1
|
|||||||
button.btn.btn-secondary#play-button
|
button.btn.btn-secondary#play-button
|
||||||
span.fa-solid.fa-play
|
span.fa-solid.fa-play
|
||||||
#submissions-slider.flex-item
|
#submissions-slider.flex-item
|
||||||
input.w-100 type='range' orient='horizontal' list='datapoints' value=0 min=0 max=all_files.length - 1
|
input.w-100 type='range' orient='horizontal' list='datapoints' value=0 min=0 max=(all_files.length - 1)
|
||||||
datalist#datapoints
|
datalist#datapoints
|
||||||
- index = 0
|
- index = 0
|
||||||
- submissions.each do |submission|
|
- submissions.each do |submission|
|
||||||
|
Reference in New Issue
Block a user