Skip to content

Commit

Permalink
trivial: alerting and scheduling are by default on
Browse files Browse the repository at this point in the history
JIRA: F1-529
  • Loading branch information
hackerstanislav committed Oct 7, 2024
1 parent d6d4ea9 commit f3dc208
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -398,14 +398,14 @@ export const selectEnableInsightExportScheduling: DashboardSelector<boolean> = c
* @alpha
*/
export const selectEnableScheduling: DashboardSelector<boolean> = createSelector(selectConfig, (state) => {
return state.settings?.enableScheduling ?? false;
return state.settings?.enableScheduling ?? true;
});

/**
* @alpha
*/
export const selectEnableAlerting: DashboardSelector<boolean> = createSelector(selectConfig, (state) => {
return state.settings?.enableAlerting ?? false;
return state.settings?.enableAlerting ?? true;
});

/**
Expand Down

0 comments on commit f3dc208

Please sign in to comment.