Skip to content

Commit

Permalink
Merge pull request #20 from eea/develop
Browse files Browse the repository at this point in the history
use default width as desktop, object_list widget for sources everywhere
  • Loading branch information
razvanMiu authored Jun 23, 2021
2 parents daaaca0 + a249ae2 commit b0c5fd8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ 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).

#### [2.0.3](https://github.com/eea/volto-plotlycharts/compare/2.0.2...2.0.3)

- use default width as desktop, object_list widget for sources everywhere [`3a7ebdb`](https://github.com/eea/volto-plotlycharts/commit/3a7ebdb8a4ed64e5d5e41cbc7836b348ca081150)

#### [2.0.2](https://github.com/eea/volto-plotlycharts/compare/2.0.1...2.0.2)

- get Visualisations data in block View, render download_button correctly [`1658198`](https://github.com/eea/volto-plotlycharts/commit/1658198afb633af3b30fe4e15e9554061d86e988)
> 17 June 2021
- get Visualisations data in block View, render download_button correctly [`#19`](https://github.com/eea/volto-plotlycharts/pull/19)

#### [2.0.1](https://github.com/eea/volto-plotlycharts/compare/2.0.0...2.0.1)

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": "2.0.2",
"version": "2.0.3",
"description": "Plotly Charts and Editor integration for Volto",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
2 changes: 1 addition & 1 deletion src/ChartBlock/schema.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const ChartSchema = {
title: 'Data provider',
},
chartSources: {
widget: 'objectlist',
widget: 'object_list',
title: 'Sources',
// this is an invention, should confront with dexterity serializer
schema: SourceSchema,
Expand Down
2 changes: 1 addition & 1 deletion src/ConnectedPlotlyChart/schema.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const ChartSchema = {
title: 'Data provider',
},
chartSources: {
widget: 'objectlist',
widget: 'object_list',
title: 'Sources',
// this is an invention, should confront with dexterity serializer
schema: SourceSchema,
Expand Down
2 changes: 1 addition & 1 deletion src/EmbedChartBlock/schema.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const ChartEmbedSchema = {
),
},
chartSources: {
widget: 'objectlist',
widget: 'object_list',
title: 'Sources',
// this is an invention, should confront with dexterity serializer
schema: SourceSchema,
Expand Down
2 changes: 1 addition & 1 deletion src/LayoutProvider/WidthBasedLayoutProvider.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const connectedWidthProvider = compose(
if (width > breakpoint('tablet')) {
return 'tablet';
}
return 'phone';
return 'desktop';
})(),
}),
],
Expand Down

0 comments on commit b0c5fd8

Please sign in to comment.