Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Text changed to 'The app has (n) open issues'
  • Loading branch information
ColinEberhardt committed Dec 19, 2014
1 parent ec5f51d commit 098b1cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/olives/bower_components/todomvc-common/base.js
Expand Up @@ -230,7 +230,7 @@
if (parsedResponse instanceof Array) {
var count = parsedResponse.length
if (count !== 0) {
issueLink.innerHTML = issueLink.innerHTML.replace(/open issues/, 'has (' + count + ') open issues');
issueLink.innerHTML = 'This app has ' + count + ' open issues';
document.getElementById('issue-count').style.display = 'inline';
}
}
Expand Down

0 comments on commit 098b1cd

Please sign in to comment.