Sanil14/FT-Job-Logger

Display values in dashboard with seperator

Closed this issue · 0 comments

Display all statistical values in the dashboard with commas for separating thousands in a number. Also display this in job-details page, for relevant values.

Pages to take effect in: index, user-jobs, job-details, jobs-manager

To add to those files:
function numberWithCommas(x) { return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); }
This will automatically separate the value with commas.