Parcourir la source

Merge pull request #246 from jonnxie/master

Used wrong parameter when getData function call another function.
Garrett Johnson il y a 3 ans
Parent
commit
62eed155d3
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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 ) {
 
-		return super.getData( key, this.batchSize, type, componentType );
+		return super.getData( key, this.batchSize, componentType, type );
 
 	}