Skip to content
This repository has been archived by the owner on May 23, 2019. It is now read-only.

Commit

Permalink
fix(Chart): Fix error message when chart data can't be loaded
Browse files Browse the repository at this point in the history
Fixes #179

Signed-off-by: Chris Jackson <chris@cd-jackson.com>
  • Loading branch information
cdjackson committed Jun 5, 2016
1 parent 5dd9cb3 commit 326927a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/habminChart.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ angular.module('habminChart', [
},
function (reason) {
// Handle failure
growl.warning(locale.getString('habmin.chartErrorLoadingItem', itemRef));
growl.warning(locale.getString('habmin.ErrorLoadingItem', itemRef));
}
);
}
Expand Down Expand Up @@ -426,7 +426,7 @@ angular.module('habminChart', [
},
function (reason) {
// Handle failure
growl.warning(locale.getString('habmin.chartErrorLoadingItem', item.item));
growl.warning(locale.getString('habmin.ErrorLoadingItem', item.item));
cnt--;
}
);
Expand Down

0 comments on commit 326927a

Please sign in to comment.