diff --git a/src/components/Charts/BarChartComponent.js b/src/components/Charts/BarChartComponent.js index f7464fffa97a44af1b2c36cb4cee95bb7f024e9b..d504c97b36424d8b2094235e68e277547dda65ea 100644 --- a/src/components/Charts/BarChartComponent.js +++ b/src/components/Charts/BarChartComponent.js @@ -262,11 +262,10 @@ function BarChartComponent(props) { } newSeries[index % size].data.push(d.total); }); - console.log(newOptions) newOptions.xaxis.categories.push(last_year); } - // newOptions.yaxis.labels.formatter = value => value?.toLocaleString('pt-BR'); + newOptions.yaxis.labels.formatter = value => value?.toLocaleString('pt-BR'); if (location.pathname === routes.adequacao_disciplina) { let adequacyPercentages = [] @@ -466,7 +465,6 @@ function BarChartComponent(props) { let data = props.data; let tempString = `${chartLocation} - ` tempString = tempString.concat(`${data[0]?.year} a ${data[data?.length - 1]?.year}`) - console.log(data[data.length - 1]) return tempString; } diff --git a/src/components/Dropdown/FixedFiltersComponent.js b/src/components/Dropdown/FixedFiltersComponent.js index 2cfb5c2af6cfbf1963123e2b5a832447597c0df6..9b13136c21c8758fbd861fab89466015eaeba2df 100644 --- a/src/components/Dropdown/FixedFiltersComponent.js +++ b/src/components/Dropdown/FixedFiltersComponent.js @@ -469,7 +469,6 @@ function FixedFiltersComponent(props) { (city.value === 0 || city.value === campiItem.city_id) && (microregion.value === 0 || microregion.value === campiItem.microregion_id) && (mesoregion.value === 0 || mesoregion.value === campiItem.mesoregion_id) - // `https://simcaq.c3sl.ufpr.br/api/v1/disciplines?dims=mesoregion${mesoregionID ? `:${mesoregionID}` : ""}` ))).map(campiItem => ({ label: campiItem.id + ' - ' + campiItem.name, value: campiItem.id,