Skip to content
Snippets Groups Projects
Commit 5d5ad732 authored by Winnie's avatar Winnie
Browse files

Minor Fix

- Cast variables to number
parent fe040a08
No related branches found
No related tags found
No related merge requests found
......@@ -196,7 +196,7 @@ function callOutput(){
yearFrom = $( "#slider-range" ).slider( "values", 0 );
yearTo = $( "#slider-range" ).slider( "values", 1 );
var params= JSON.stringify({taxId: Number(taxGroup), yearF: yearFrom, yearT: yearTo});
var params= JSON.stringify({taxId: Number(taxGroup), yearF: Number(yearFrom), yearT: Number(yearTo)});
//Switch Output Display
if(outType === "Histogram"){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment