Merge pull request #4425 from backstage/bugfix-snooze-duration

snooze duration bugfix
This commit is contained in:
Ryan Vazquez
2021-02-08 09:36:36 -05:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
@@ -0,0 +1,5 @@
---
'@backstage/plugin-cost-insights': patch
---
Fix snooze quarter option
+1 -1
View File
@@ -149,7 +149,7 @@ export const AlertSnoozeOptions: AlertSnoozeOption[] = [
label: '1 Month',
},
{
duration: Duration.P3M,
duration: Duration.P90D,
label: '1 Quarter',
},
];