Skip to content

Commit

Permalink
Merge pull request #549 from ossreleasefeed/show-user-message-when-no…
Browse files Browse the repository at this point in the history
…-data-750816

show user message on no data fixes 750816
  • Loading branch information
brandonsavage committed May 2, 2012
2 parents 80c2147 + ff472ed commit 9e8d937
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp-php/js/socorro/crash_trends.js
Expand Up @@ -99,7 +99,7 @@ $(function() {
// remove the loading animation
$("#loading").remove();

if(data.nightlyCrashes.length > 0) {
if(data.nightlyCrashes) {
graph = $.plot("#nightly_crash_trends_graph", data.nightlyCrashes, options);
//emty the ul before appending the new dates
$("#dates").empty();
Expand Down

0 comments on commit 9e8d937

Please sign in to comment.