Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

### [13.3.0](https://github.com/eea/volto-plotlycharts/compare/13.2.0...13.3.0) - 27 October 2025
### [13.3.1](https://github.com/eea/volto-plotlycharts/compare/13.3.0...13.3.1) - 4 November 2025

#### :bug: Bug Fixes

- fix(csv): csv is now formatted correctly, ref #293515 [Miu Razvan - [`f60c75c`](https://github.com/eea/volto-plotlycharts/commit/f60c75c99ec98564974094ce3f17018d645f8ead)]
- fix(dataSources): skip unsupported attributes when extracting ds [Miu Razvan - [`8486c08`](https://github.com/eea/volto-plotlycharts/commit/8486c080450dbd692284629fe9e443f090d0ae4b)]

### [13.3.0](https://github.com/eea/volto-plotlycharts/compare/13.2.0...13.3.0) - 27 October 2025

#### :hammer_and_wrench: Others

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eeacms/volto-plotlycharts",
"version": "13.3.0",
"version": "13.3.1",
"description": "Plotly Charts and Editor integration for Volto",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
4 changes: 4 additions & 0 deletions src/helpers/plotly.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ export function getPlotlyDataSources({ data, layout, originalDataSources }) {
Object.entries(
getAttrsPath(trace, constants.TRACE_SRC_ATTRIBUTES),
).forEach(([attr, value]) => {
// Skip attrs that are not well supported
if (['marker.color', 'marker.size'].includes(attr)) {
return;
}
acc.push({
attr,
value,
Expand Down