File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -200,9 +200,7 @@ <h3>Select a Category</h3>
200
200
< div class ="row pb-5 ">
201
201
< div class ="col-md-6 pt-3 ">
202
202
< h3 > How many worksheets?</ h3 >
203
- < select id ="worksheetCount " class ="form-control ">
204
- < option > 1</ option > < option > 3</ option > < option selected > 6</ option > < option > 9</ option > < option > 12</ option > < option > 15</ option >
205
- </ select >
203
+ < select id ="worksheetCount " class ="form-control "> </ select >
206
204
</ div >
207
205
< div class ="col-md-6 pt-3 ">
208
206
< label >
Original file line number Diff line number Diff line change @@ -213,6 +213,7 @@ const HwGen = (() => {
213
213
data [ 'selectedCat' ] = hwSets [ hwSetName ] . category ;
214
214
data [ 'mode' ] = MODE . PRINT_CONFIG ;
215
215
}
216
+ worksheetCountSelect . innerHTML = new Array ( 29 ) . fill ( ) . map ( ( _ , i ) => `<option>${ i + 1 } </option>` ) . join ( "" ) ;
216
217
//map sets by Category.
217
218
Object . keys ( hwSets ) . map ( a => {
218
219
const hwSet = hwSets [ a ] ;
You can’t perform that action at this time.
0 commit comments