fix(alerting): makes valid to save more explicit

This commit is contained in:
bergquist
2016-06-13 15:01:07 +02:00
parent 0d60b042c8
commit bb6888885e

View File

@@ -24,7 +24,7 @@ type Alert struct {
}
func (alert *Alert) ValidToSave() bool {
return alert.DashboardId != 0
return alert.DashboardId != 0 && alert.OrgId != 0 && alert.PanelId != 0
}
func (this *Alert) ContainsUpdates(other *Alert) bool {