Skip to content

Commit

Permalink
Merge pull request #5580 from gooddata/SHA_master
Browse files Browse the repository at this point in the history
feat: turn on FF
  • Loading branch information
kandl authored Nov 22, 2024
2 parents 2c4ede9 + b8e53cb commit 7222da4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/sdk-backend-tiger/src/backend/uiFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export const DefaultFeatureFlags: ITigerFeatureFlags = {
enableAnalyticalCatalog: false,
enableAlerting: true,
enableAlertAttributes: true,
enableComparisonInAlerting: false,
enableComparisonInAlerting: true,
enableSmtp: true,
enableScheduling: true,
enableLabsSmartFunctions: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ export const selectEnableAlertAttributes: DashboardSelector<boolean> = createSel
export const selectEnableComparisonInAlerting: DashboardSelector<boolean> = createSelector(
selectConfig,
(state) => {
return state.settings?.enableComparisonInAlerting ?? false;
return state.settings?.enableComparisonInAlerting ?? true;
},
);

Expand Down

0 comments on commit 7222da4

Please sign in to comment.