Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandog committed May 9, 2016
1 parent 55c0658 commit aacd4ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/slick/views/config_providers.mako
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ $('#config-components').tabs();
<label for="${curTorrentProvider.get_id()}_ratio">
<span class="component-title" id="${curTorrentProvider.get_id()}_ratio_desc">Seed ratio:</span>
<span class="component-desc">
<input type="number" min="-1" step="0.1" name="${curTorrentProvider.get_id()}_ratio" id="${curTorrentProvider.get_id()}_ratio" value="${curTorrentProvider.ratio}" class="form-control input-sm input75" />
<input type="number" min="-1" step="0.1" name="${curTorrentProvider.get_id()}_ratio" id="${curTorrentProvider.get_id()}_ratio" value="${'' if curTorrentProvider.ratio is None else curTorrentProvider.ratio}" class="form-control input-sm input75" />
</span>
</label>
<label>
Expand Down

0 comments on commit aacd4ce

Please sign in to comment.