Welcome to Codidact Meta!
Codidact Meta is the meta-discussion site for the Codidact community network and the Codidact software. Whether you have bug reports or feature requests, support questions or rule discussions that touch the whole network – this is the site for you.
Post History
I'm trying to make a filter for "Not that negative" posts, imagining "Net score > -2," but the UI of the filter creator only lets you put in Min Score between 0 and 1, with a step size on the sp...
#2: Post edited
- I'm trying to make a filter for "Not _that_ negative" posts, imagining "Net score > -2," but the UI of the filter creator only lets you put in Min Score between 0 and 1, with a step size on the spinner of 0.01.
```- <div class="form-group">
- <label class="form-element" for="min_score">Min Score</label>
- <input type="number" name="min_score" id="min_score"
- min="0" max="1" step="0.01" class="form-element form--filter"
- data-name="min_score">
- </div>
- ```
- Maybe I misunderstand what "Score" means? Is it not the Positive votes minus the Negative votes?
- I'm trying to make a filter for "Not _that_ negative" posts, imagining "Net score > -2," but the UI of the filter creator only lets you put in Min Score between 0 and 1, with a step size on the spinner of 0.01.
- ```html
- <div class="form-group">
- <label class="form-element" for="min_score">Min Score</label>
- <input type="number" name="min_score" id="min_score"
- min="0" max="1" step="0.01" class="form-element form--filter"
- data-name="min_score">
- </div>
- ```
- Maybe I misunderstand what "Score" means? Is it not the Positive votes minus the Negative votes?
#1: Initial revision
Filters don't allow negative Min Score
I'm trying to make a filter for "Not _that_ negative" posts, imagining "Net score > -2," but the UI of the filter creator only lets you put in Min Score between 0 and 1, with a step size on the spinner of 0.01. ``` <div class="form-group"> <label class="form-element" for="min_score">Min Score</label> <input type="number" name="min_score" id="min_score" min="0" max="1" step="0.01" class="form-element form--filter" data-name="min_score"> </div> ``` Maybe I misunderstand what "Score" means? Is it not the Positive votes minus the Negative votes?