Skip to content

Commit

Permalink
feat(client): prefer binary format for rule-set
Browse files Browse the repository at this point in the history
Signed-off-by: Tianling Shen <[email protected]>
  • Loading branch information
1715173329 committed Sep 18, 2024
1 parent 64c5269 commit f94668b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/luci-static/resources/view/homeproxy/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -1007,9 +1007,9 @@ return view.extend({
so.rmempty = false;

so = ss.option(form.ListValue, 'format', _('Format'));
so.value('source', _('Source file'));
so.value('binary', _('Binary file'));
so.default = 'source';
so.value('source', _('Source file'));
so.default = 'binary';
so.rmempty = false;

so = ss.option(form.Value, 'path', _('Path'));
Expand Down

0 comments on commit f94668b

Please sign in to comment.