| Index: dashboard/dashboard/pinpoint/elements/jobs-page.html
|
| diff --git a/dashboard/dashboard/pinpoint/elements/jobs-page.html b/dashboard/dashboard/pinpoint/elements/jobs-page.html
|
| index e0c269ce730e8216f556fc951f849757127345e9..5b598114093916a8e6d19c356d340dbe683aadfd 100644
|
| --- a/dashboard/dashboard/pinpoint/elements/jobs-page.html
|
| +++ b/dashboard/dashboard/pinpoint/elements/jobs-page.html
|
| @@ -109,10 +109,12 @@ found in the LICENSE file.
|
| computeIsSingular: count => count === 1,
|
|
|
| computeJobCountString: function() {
|
| - if (this.totalJobsCount === 1)
|
| + if (this.totalJobsCount === 1) {
|
| return '1 job';
|
| - if (this.totalJobsCount < this.totalJobsCountMax)
|
| + }
|
| + if (this.totalJobsCount < this.totalJobsCountMax) {
|
| return String(this.totalJobsCount) + ' jobs.';
|
| + }
|
| return String(this.totalJobsCountMax) + ' or more jobs.';
|
| },
|
|
|
|
|