Skip to content

Commit

Permalink
fix group by update
Browse files Browse the repository at this point in the history
  • Loading branch information
cle-b committed Jan 5, 2025
1 parent 8d53a4f commit 1f49472
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion httpdbg/webapp/static/configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ function apply_config() {
apply_config_rule(httpdbgApp.config.keep_previous_sessions);

apply_config_rule_select(httpdbgApp.config.group_by);
update_group_by(httpdbgApp.config.group_by.value);

apply_config_rule_css(httpdbgApp.config.hide_netloc, sheet);
apply_config_rule_css(httpdbgApp.config.hide_group, sheet);
Expand Down
3 changes: 2 additions & 1 deletion httpdbg/webapp/static/index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<label for="ckeepsession" title="If you choose to keep previous sessions, the requests will not be deleted when starting a new session.">keep previous sessions</label>
-
<label for="groupby-select">group by</label>
<select id="groupby-select" name="gb" onchange="load_config_from_form(true)">
<select id="groupby-select" name="gb" onchange="update_group_by(this.value);load_config_from_form(true)">
<option value="default" selected>default</option>
<option value="initiator">initiator</option>
<option value="session">session</option>
Expand Down Expand Up @@ -371,6 +371,7 @@ <h4>request cookies</h4>
<script>
load_config_from_url(true);
update_filter_url();
update_group_by(httpdbgApp.config.group_by.value);
pol_new_data();
enable_refresh();
opentab_headers();
Expand Down

0 comments on commit 1f49472

Please sign in to comment.