mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-23 21:47:44 -05:00
Allow negative category sort numbers (#8330)
Closes https://github.com/FreshRSS/FreshRSS/issues/8304 Remove the min=1 attribute so negative numbers can be used to force categories to the bottom
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
<div class="form-group">
|
||||
<label class="group-name" for="position"><?= _t('sub.category.position') ?></label>
|
||||
<div class="group-controls">
|
||||
<input type="number" name="position" id="position" min="1" value="<?= $this->category->attributeInt('position') ?>" />
|
||||
<input type="number" name="position" id="position" value="<?= $this->category->attributeInt('position') ?>" />
|
||||
<p class="help"><?= _i('help') ?> <?= _t('sub.category.position_help') ?></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user