Skip to content

Commit

Permalink
Merge pull request #3188 from AngusC222/develop
Browse files Browse the repository at this point in the history
minimum/maximum ports added on frontend
  • Loading branch information
jc21 committed Oct 3, 2023
2 parents 853c48d + 5af834e commit 0f7be79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/js/app/nginx/proxy/location-item.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<div class="col-sm-4 col-md-4">
<div class="form-group">
<label class="form-label"><%- i18n('proxy-hosts', 'forward-port') %> <span class="form-required">*</span></label>
<input name="forward_port" type="number" class="form-control text-monospace model" placeholder="80" value="<%- forward_port %>" required>
<input name="forward_port" type="number" class="form-control text-monospace model" placeholder="80" min="1" max="65535" value="<%- forward_port %>" required>
</div>
</div>
</div>
Expand Down

0 comments on commit 0f7be79

Please sign in to comment.