Skip to content

Commit

Permalink
Default canPlay to true in the Timestep component and remove hardcode…
Browse files Browse the repository at this point in the history
…d timestep canPlay in decode params
  • Loading branch information
SARodrigues committed Mar 19, 2024
1 parent a33887b commit 7388409
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion components/timestep/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Timestep extends PureComponent {
customClass: null,
range: true,
pushable: 0,
canPlay: false,
canPlay: true,

trim: null,

Expand Down
1 change: 0 additions & 1 deletion providers/datasets-provider/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ export const fetchDatasets = createThunkAction(
minDate: decodeParams.startDate,
maxDate: decodeParams.endDate,
trimEndDate: decodeParams.endDate,
canPlay: true,
}),
},
}),
Expand Down

0 comments on commit 7388409

Please sign in to comment.