Skip to content

Commit

Permalink
fix for metrics issue with sms meeting lookups
Browse files Browse the repository at this point in the history
  • Loading branch information
dgershman committed Sep 2, 2024
1 parent c7dba40 commit 43c23d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Dealing with cases where no timezone is set for a volunteer. Those volunteers are excluded. [#1121]
* Validation for empty timezones for volunteer shifts. [#1121]
* Adding SPAD playback metrics.
* Fix for bug with mis-labeled Meetings (SMS) metrics which was being reported as Volunteer (SMS) on the reports Usage Summary chart.
* Fix for bug with missed called metrics [#1114]

### 4.3.6 (July 14, 2024)
Expand Down
2 changes: 1 addition & 1 deletion src/public/src/js/yap-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ function getMetricsData()
{
$("#metrics").slideUp(function () {
$.getJSON("../api/v1/reports/metrics?service_body_id=" + $("#service_body_id").val() + getDateRanges() + "&recurse=" + recurseReports(), function (data) {
var actions = ['Volunteer (CALL)', 'Meetings (CALL)', 'JFT (CALL)', 'Volunteer (SMS)', 'Meetings (SMS)', 'JFT (SMS)', 'SPAD', 'SPAD (SMS)'];
var actions = ['Volunteer (CALL)', 'Meetings (CALL)', 'JFT (CALL)', 'Meetings (SMS)', 'Volunteer (SMS)', 'JFT (SMS)', 'SPAD', 'SPAD (SMS)'];
var actions_plots = [1, 2, 3, 19, 20, 21, 23, 24];
var plots = {"1": [], "2": [], "3": [], "19": [], "20": [], "21": [], "23": [], "24": []};
var colors = ['#FF6600', '#87B63A', 'indigo', '#FF6E9B', '#446E9B', 'black', 'purple', 'brown'];
Expand Down

0 comments on commit 43c23d1

Please sign in to comment.