File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -969,13 +969,13 @@ class InteropDashboard extends WPTFlags(PolymerElement) {
969
969
970
970
getInteropScoreForFeature ( feature , stable ) {
971
971
const numBrowsers = this . getYearProp ( 'numBrowsers' ) ;
972
- return this . getBrowserScoreForFeature ( numBrowsers , feature , this . stable ) ;
972
+ return this . getBrowserScoreForFeature ( numBrowsers , feature , stable ) ;
973
973
}
974
974
975
975
// getNumericalBrowserScoreByFeature returns the same score as
976
976
// getBrowserScoreForFeature but as a number instead of a string
977
977
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 ;
979
979
const score = scores [ browserIndex ] [ feature ] ;
980
980
const roundedScore = Math . round ( score * 100 ) / 100 ;
981
981
return roundedScore / 10 ;
You can’t perform that action at this time.
0 commit comments