Skip to content
Snippets Groups Projects
Commit 117534dc authored by Lucas Soni Teixeira's avatar Lucas Soni Teixeira
Browse files

Merge branch 'filtersChangeTest' into 'dev'

FIx stuff

See merge request !74
parents e631cfe8 59bfa56b
No related branches found
No related tags found
3 merge requests!78Homologa to produção,!75Change table button and remove data Labels,!74FIx stuff
......@@ -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;
}
......
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment