Skip to content

Commit

Permalink
fix: enable config check
Browse files Browse the repository at this point in the history
  • Loading branch information
viktoraronfarkas committed Oct 25, 2023
1 parent 864a0c0 commit 317c1d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/src/components/map/Map.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@
:drawnArea.sync="drawnArea"
/>
<DatePickerControl
v-if="loaded /*&& mergedConfigsData.length && mergedConfigsData[0].showDatePicker*/"
v-if="loaded && mergedConfigsData.length && mergedConfigsData[0].showDatePicker"
class="pointerEvents"
:mapId="mapId"
/>
<SliderControl
v-if="loaded /*&& mergedConfigsData.length && mergedConfigsData[0].showSlider*/"
v-if="loaded && mergedConfigsData.length && mergedConfigsData[0].showSlider"
class="pointerEvents"
:mapId="mapId"
:maxVal="100"
Expand Down
2 changes: 1 addition & 1 deletion app/src/config/esa.js
Original file line number Diff line number Diff line change
Expand Up @@ -1792,7 +1792,7 @@ export const globalIndicators = [
},
lastColorCode: 'primary',
eoSensor: null,
aoiID: 'W2',
aoiID: 'W2_test',
time: getDailyDates('2020-01-01', '2021-12-31'),
inputData: [''],
yAxis: 'Number of trucks detected',
Expand Down

0 comments on commit 317c1d7

Please sign in to comment.