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
When importing a CSV in standalone Modal Editor (or Full editor) with values that have comma-separated decimal values in it (32,56), the CSV import should be able to import them as decimal values to the "Chart data".
Actual behaviour
When importing CSV with comma-separated decimal values, the comma is removed, turning 32,56 into 3256.
This was originally found when we were using editor.dataTable.loadCSV() to automatically populate the editor data with previously added values, and noticed that this happens on the Import UI as well.
It's possible that this is expected behavior as decimal separators are periods by default, so I'm unsure if this is really an issue or not, but I'd like to be sure.
Expected behaviour
When importing a CSV in standalone Modal Editor (or Full editor) with values that have comma-separated decimal values in it (
32,56
), the CSV import should be able to import them as decimal values to the "Chart data".Actual behaviour
When importing CSV with comma-separated decimal values, the comma is removed, turning
32,56
into3256
.This was originally found when we were using
editor.dataTable.loadCSV()
to automatically populate the editor data with previously added values, and noticed that this happens on the Import UI as well.It's possible that this is expected behavior as decimal separators are periods by default, so I'm unsure if this is really an issue or not, but I'd like to be sure.
Reproduction steps
20,33
to2033
and so on.Editor version
0.2.2
Affected browser(s)
All
The text was updated successfully, but these errors were encountered: