You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pkg/googlesheets/utils.go findTimeField can be frame.TypeIndices(data.FieldTypeTime, data.FieldTypeNullableTime)` instead
pkg/googlesheets/utils.go frame.Fields[columnIndex].Set(rowIndex-start, &cellData.FormattedValue)can be frame.Set(columnIndex, rowIndex-start, &cellData.FormattedValue) if you like.
pkg/googlesheets/utils.go getUniqueColumnName - frame Field names no longer need to be unique within a Frame. So if this is why this is there, it can be removed.
The text was updated successfully, but these errors were encountered:
frame.Fields[columnIndex].Set(rowIndex-start, &cellData.FormattedValue)
can beframe.Set(columnIndex, rowIndex-start, &cellData.FormattedValue)
if you like.getUniqueColumnName
- frame Field names no longer need to be unique within a Frame. So if this is why this is there, it can be removed.The text was updated successfully, but these errors were encountered: