Commit 2cf674bb authored by Bryce Johnson's avatar Bryce Johnson

Remove extra parenthesis around timeRemainingPercent calc.

parent 86a19f27
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
return this.timeEstimate - this.timeSpent; return this.timeEstimate - this.timeSpent;
}, },
timeRemainingPercent() { timeRemainingPercent() {
return `${Math.floor(((this.timeSpent / this.timeEstimate) * 100))}%`; return `${Math.floor((this.timeSpent / this.timeEstimate) * 100)}%`;
}, },
timeRemainingStatusClass() { timeRemainingStatusClass() {
return this.timeEstimate >= this.timeSpent ? 'within_estimate' : 'over_estimate'; return this.timeEstimate >= this.timeSpent ? 'within_estimate' : 'over_estimate';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment