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
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version 25.03.XX
## Version 25.03.29
Fixes:
- [core] Do not output password in logs on mongodb connection initialisation error
- [core] Hide error details on render error from response
Expand All @@ -7,7 +7,8 @@ Fixes:
- [events] Do not throw error in UI on returned group data if there is no segmentation set

Enterprise Fixes:
-[surveys] Do not fetch survey meta data if plugin is disabled
- [drill] Fixed timeline recalculation
- [surveys] Do not fetch survey meta data if plugin is disabled

## Version 25.03.28
Fixes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const sessionDurationsDataTableElements = (index = 0) => ({

//Columns' Rows' Datas Elements
SESSION_DURATION: 'datatable-session-durations-session-duration-' + index,
NUMBER_OF_SESSIONS: 'datatable-session-durations-session-duration-' + index,
NUMBER_OF_SESSIONS: 'datatable-session-durations-number-of-sessions-' + index,
PERCENT_VALUE: 'datatable-session-durations-percent-' + index,
PERCENT_PROGRESS_BAR: 'datatable-session-durations-progress-bar-' + index,

Expand All @@ -67,4 +67,4 @@ module.exports = {
sessionDurationsPageElements,
sessionDurationsEChartElements,
sessionDurationsDataTableElements
};
};
Loading