Skip to content

Commit 6cfda3e

Browse files
author
weinStag
committed
fix: translate remaining Portuguese comments to English
1 parent 8b3cfac commit 6cfda3e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/ChartVisualization/ChartVisualization.react.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ const ChartVisualization = ({
121121
const datasets = [];
122122
let datasetIndex = 0;
123123

124-
// Criar um dataset para cada coluna numérica (exceto a coluna de data)
124+
// Create a dataset for each numeric column (except the date column)
125125
for (let colIndex = colStart; colIndex <= colEnd; colIndex++) {
126126
// Pular a coluna de data
127127
if (colIndex === dateColumnIndex) {
@@ -206,7 +206,7 @@ const ChartVisualization = ({
206206
const labels = [];
207207
const dataPoints = [];
208208

209-
// Se múltiplas colunas, criar datasets separados para cada coluna
209+
// If multiple columns, create separate datasets for each column
210210
if (colEnd > colStart) {
211211
// FIX: Instead of calculating averages, show all values
212212
const datasets = [];

src/components/DraggableResizablePanel/DraggableResizablePanel.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
.resizableContainer {
1111
border-radius: 8px;
12-
overflow: visible; // Mudança: permitir que os handles sejam visíveis fora da borda
12+
overflow: visible; // Change: allow handles to be visible outside the border
1313

1414
:global(.react-resizable-handle) {
1515
position: absolute;

0 commit comments

Comments
 (0)