Explorar el Código

Used wrong parameter when getData function call another function.

jonnxie hace 3 años
padre
commit
6bc83003dc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 );
 
 	}