Skip to content

Commit

Permalink
fix(node): fix letter case itssue in http method
Browse files Browse the repository at this point in the history
Fixes: #38
  • Loading branch information
1715173329 authored Oct 12, 2023
1 parent d27d288 commit ec7413b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/luci-static/resources/view/homeproxy/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -948,8 +948,8 @@ return view.extend({
so.modalonly = true;

so = ss.option(form.Value, 'http_method', _('Method'));
so.value('get', _('GET'));
so.value('put', _('PUT'));
so.value('GET', _('GET'));
so.value('PUT', _('PUT'));
so.depends('transport', 'http');
so.modalonly = true;

Expand Down

0 comments on commit ec7413b

Please sign in to comment.