From 73884099ae5c8d68eadb5aa5a949abe36396101b Mon Sep 17 00:00:00 2001 From: Simao Rodrigues Date: Tue, 19 Mar 2024 13:05:33 +0000 Subject: [PATCH] Default canPlay to true in the Timestep component and remove hardcoded timestep canPlay in decode params --- components/timestep/index.js | 2 +- providers/datasets-provider/actions.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/components/timestep/index.js b/components/timestep/index.js index 7a36169029..ce805c3b08 100644 --- a/components/timestep/index.js +++ b/components/timestep/index.js @@ -45,7 +45,7 @@ class Timestep extends PureComponent { customClass: null, range: true, pushable: 0, - canPlay: false, + canPlay: true, trim: null, diff --git a/providers/datasets-provider/actions.js b/providers/datasets-provider/actions.js index 18fa932203..9ea6315404 100644 --- a/providers/datasets-provider/actions.js +++ b/providers/datasets-provider/actions.js @@ -270,7 +270,6 @@ export const fetchDatasets = createThunkAction( minDate: decodeParams.startDate, maxDate: decodeParams.endDate, trimEndDate: decodeParams.endDate, - canPlay: true, }), }, }),