We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b2ad08 commit f834020Copy full SHA for f834020
src/statistics.js
@@ -45,7 +45,7 @@ module.exports ={
45
return value ? parseInt(value) : 0;
46
}
47
48
- getFLoatValue(label) {
+ getFloatValue(label) {
49
let value = this.getStringValue(label);
50
return value ? parseFloat(value) : 0;
51
@@ -76,7 +76,7 @@ module.exports ={
76
77
78
queryExecutionTime() {
79
- return this.getFLoatValue(Label.QUERY_INTERNAL_EXECUTION_TIME);
+ return this.getFloatValue(Label.QUERY_INTERNAL_EXECUTION_TIME);
80
81
82
0 commit comments