Skip to content

Commit

Permalink
alerts: Disable alerts with Info level by default
Browse files Browse the repository at this point in the history
They are annoying and usually not important.
  • Loading branch information
rafaellehmkuhl committed Jul 11, 2023
1 parent 780ca1f commit e72014b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/alert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const useAlertStore = defineStore('alert', () => {
const enabledAlertLevels = useStorage('cockpit-enabled-alert-levels', [
{ level: AlertLevel.Success, enabled: true },
{ level: AlertLevel.Error, enabled: true },
{ level: AlertLevel.Info, enabled: true },
{ level: AlertLevel.Info, enabled: false },
{ level: AlertLevel.Warning, enabled: true },
{ level: AlertLevel.Critical, enabled: true },
])
Expand Down

0 comments on commit e72014b

Please sign in to comment.