浏览代码

Merge pull request #246 from jonnxie/master

Used wrong parameter when getData function call another function.
Garrett Johnson 3 年之前
父节点
当前提交
62eed155d3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/utilities/FeatureTable.js

+ 1 - 1
src/utilities/FeatureTable.js

@@ -154,7 +154,7 @@ export class BatchTable extends FeatureTable {
 
 
 	getData( key, componentType = null, type = null ) {
 	getData( key, componentType = null, type = null ) {
 
 
-		return super.getData( key, this.batchSize, type, componentType );
+		return super.getData( key, this.batchSize, componentType, type );
 
 
 	}
 	}