Fixed typo in mapRgba function.

This commit is contained in:
Harrison Deng 2022-04-21 01:47:25 -05:00
parent 5dcbef2b63
commit 73ecd9e6de

View File

@ -36,7 +36,7 @@ export function mapRgba({ element, color, lowerBin, visUpdateRouter, interpolato
upperVal = Math.min(Math.max(0, upperVal), 255);
lowerVal = Math.min(Math.max(0, lowerVal), upperVal);
const conf = {
minVal: lowerBin,
minVal: lowerVal,
maxVal: upperVal,
bin: lowerBin,
getter: getter,