Skip to content

Commit

Permalink
Web Dashboard: fixed a bug in the query progress plot
Browse files Browse the repository at this point in the history
  • Loading branch information
iagaponenko committed Oct 3, 2024
1 parent 6a5efd9 commit 69539c8
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/www/qserv/js/QservCzarQueryProgress.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ function(CSSLoader,

class QservCzarQueryProgress extends FwkApplication {

// Return the default number of the last seconds to track in the query history
static last_seconds() { return 15 * 60; }

constructor(name) {
super(name);
this._data = undefined;
Expand Down Expand Up @@ -97,8 +100,8 @@ function(CSSLoader,
data-placement="top">
<label for="horizontal-scale">Horizontal scale:</label>
<select id="horizontal-scale" class="form-control form-control-viewer">
<option selected value="">&nbsp;</option>
<option value="auto-zoom-in">auto-zoom-in</option>
<option value="">&nbsp;</option>
<option selected value="auto-zoom-in">auto-zoom-in</option>
</select>
</div>
<div class="form-group col-md">
Expand Down Expand Up @@ -126,7 +129,7 @@ function(CSSLoader,
`;
let cont = this.fwk_app_container.html(html);
cont.find('[data-toggle="tooltip"]').tooltip();
this._set_last_seconds(900);
this._set_last_seconds(QservCzarQueryProgress.last_seconds());
cont.find(".form-control-selector").change(() => {
this._load();
});
Expand All @@ -137,9 +140,9 @@ function(CSSLoader,
cont.find("button#reset-form").click(() => {
this._set_update_interval_sec(10);
this._set_query_id(0);
this._set_last_seconds(15 * 60);
this._set_last_seconds(QservCzarQueryProgress.last_seconds());
this._set_vertical_scale('logarithmic');
this._set_horizontal_scale('');
this._set_horizontal_scale('auto-zoom-in');
this._load();
});
}
Expand Down

0 comments on commit 69539c8

Please sign in to comment.