Commit 5409f4c0 by Torkel Ödegaard

dashboard_history: fixed issue with save as & overwrite

parent 9b629cd5
...@@ -63,6 +63,7 @@ func SaveDashboard(cmd *m.SaveDashboardCommand) error { ...@@ -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
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment