mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
Fix dashboard refresh URL
This commit is contained in:
parent
fb2c286506
commit
a6247b569f
2 changed files with 6 additions and 5 deletions
|
@ -2,6 +2,7 @@
|
|||
-----------
|
||||
|
||||
- Refactor signal handling to work on Ruby 2.0 [#728, #730]
|
||||
- Fix dashboard refresh URL
|
||||
|
||||
2.7.4
|
||||
-----------
|
||||
|
|
|
@ -11,11 +11,11 @@ h5 Real-time
|
|||
|
||||
h5
|
||||
span.history-heading History
|
||||
a href="#{{current_path}}?days=7" class="history-graph #{{"active" if params[:days] == "7"}}" 1 week
|
||||
a href="#{{current_path}}" class="history-graph #{{"active" if params[:days].nil? || params[:days] == "30"}}" 1 month
|
||||
a href="#{{current_path}}?days=90" class="history-graph #{{"active" if params[:days] == "90"}}" 3 month
|
||||
a href="#{{current_path}}?days=180" class="history-graph #{{"active" if params[:days] == "180"}}" 6 month
|
||||
#history data-processed="#{Sidekiq.dump_json(@processed_history)}" data-failed="#{Sidekiq.dump_json(@failed_history)}" data-update-url="#{{current_path}}dashboard/stats"
|
||||
a href="#{{root_path}}?days=7" class="history-graph #{{"active" if params[:days] == "7"}}" 1 week
|
||||
a href="#{{root_path}}" class="history-graph #{{"active" if params[:days].nil? || params[:days] == "30"}}" 1 month
|
||||
a href="#{{root_path}}?days=90" class="history-graph #{{"active" if params[:days] == "90"}}" 3 month
|
||||
a href="#{{root_path}}?days=180" class="history-graph #{{"active" if params[:days] == "180"}}" 6 month
|
||||
#history data-processed="#{Sidekiq.dump_json(@processed_history)}" data-failed="#{Sidekiq.dump_json(@failed_history)}" data-update-url="#{{root_path}}dashboard/stats"
|
||||
|
||||
br
|
||||
h5 Redis
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue