Skip to content

Commit f8de355

Browse files
author
DanielRyanSmith
committed
lint
1 parent ac1ae56 commit f8de355

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webapp/components/interop-dashboard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -969,13 +969,13 @@ class InteropDashboard extends WPTFlags(PolymerElement) {
969969

970970
getInteropScoreForFeature(feature, stable) {
971971
const numBrowsers = this.getYearProp('numBrowsers');
972-
return this.getBrowserScoreForFeature(numBrowsers, feature, this.stable);
972+
return this.getBrowserScoreForFeature(numBrowsers, feature, stable);
973973
}
974974

975975
// getNumericalBrowserScoreByFeature returns the same score as
976976
// getBrowserScoreForFeature but as a number instead of a string
977977
getNumericalBrowserScoreByFeature(browserIndex, feature, stable) {
978-
const scores = this.stable ? this.scores.stable : this.scores.experimental;
978+
const scores = stable ? this.scores.stable : this.scores.experimental;
979979
const score = scores[browserIndex][feature];
980980
const roundedScore = Math.round(score * 100) / 100;
981981
return roundedScore / 10;

0 commit comments

Comments
 (0)