Skip to content

Commit

Permalink
Merge pull request #317 from LD4P/release/7.1.3
Browse files Browse the repository at this point in the history
release 7.1.3 - fix performance graph not displaying
  • Loading branch information
elrayle authored Feb 22, 2020
2 parents 26b4521 + 74a0444 commit 3660386
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 7.1.3 (2020-02-22)

* fix performance datatable never displays

### 7.1.2 (2020-02-21)

* make configs that return true/false end with ?
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/qa_server/monitor_status_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def update_historical_graph
end

def performance_table_data
return {} unless QaServer.config.display_performance_graph?
return {} unless QaServer.config.display_performance_datatable?
QaServer::PerformanceDatatableCache.data(force: refresh_performance_table?)
end

Expand Down
2 changes: 1 addition & 1 deletion lib/qa_server/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module QaServer
VERSION = '7.1.2'
VERSION = '7.1.3'
end

0 comments on commit 3660386

Please sign in to comment.