dashboard_history: fixed issue with save as & overwrite

This commit is contained in:
Torkel Ödegaard
2017-06-06 14:39:57 +02:00
parent 9b629cd5a6
commit 5409f4c0eb

View File

@@ -63,6 +63,7 @@ func SaveDashboard(cmd *m.SaveDashboardCommand) error {
if dash.Id != sameTitle.Id { if dash.Id != sameTitle.Id {
if cmd.Overwrite { if cmd.Overwrite {
dash.Id = sameTitle.Id dash.Id = sameTitle.Id
dash.Version = sameTitle.Version
} else { } else {
return m.ErrDashboardWithSameNameExists return m.ErrDashboardWithSameNameExists
} }