Skip to content

Commit

Permalink
Correct units in profiling.html and requests.html (#725)
Browse files Browse the repository at this point in the history
* Correct units in profiling.html and requests.html

* Correct units in attrs and timespentfilter
  • Loading branch information
ka28kumar authored Aug 16, 2024
1 parent 7e35c19 commit dfb2826
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions silk/templates/silk/profiling.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ <h4>Profile</h4>
value="OverallTimeFilter"
name="filter-overalltime-typ"/>
<input type="text"
placeholder="seconds"
placeholder="milliseconds"
form="filter-form2"
name="filter-overalltime-value"
value="{{ filters.overalltime.value }}"/>
<span style="display:none"></span>
</div>
seconds,
milliseconds,
executed more than
<div class="resizing-input">
<input form="filter-form2"
Expand All @@ -101,13 +101,13 @@ <h4>Profile</h4>
name="filter-timespentfilter-typ"/>
<input
type="text"
placeholder="seconds"
placeholder="milliseconds"
form="filter-form2"
name="filter-timespentfilter-value"
value="{{ filters.timespentfilter.value }}"/>
<span style="display:none"></span>
</div>
seconds executing queries.
milliseconds executing queries.
</div>
<h4>Date Range</h4>
<div class="filter-section">
Expand Down
8 changes: 4 additions & 4 deletions silk/templates/silk/requests.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ <h4>Request</h4>
value="OverallTimeFilter"
name="filter-overalltime-typ"/>
<input type="text"
placeholder="seconds"
placeholder="milliseconds"
form="filter-form2"
name="filter-overalltime-value"
value="{{ filters.overalltime.value }}"/>
<span style="display:none"></span>
</div>
seconds,
milliseconds,
executed more than
<div class="resizing-input">
<input form="filter-form2"
Expand All @@ -124,13 +124,13 @@ <h4>Request</h4>
name="filter-timespentfilter-typ"/>
<input
type="text"
placeholder="seconds"
placeholder="milliseconds"
form="filter-form2"
name="filter-timespentfilter-value"
value="{{ filters.timespentfilter.value }}"/>
<span style="display:none"></span>
</div>
seconds executing queries.
milliseconds executing queries.
</div>
<h4>Date Range</h4>
<div class="filter-section">
Expand Down

0 comments on commit dfb2826

Please sign in to comment.