mirror of https://github.com/grafana/grafana.git
publicdashboards: Don't format timestamp before passing it to database. (#103463)
Don't format timestamp before passing it to database.
This commit is contained in:
parent
54b8dde1e1
commit
b0b4b31765
|
|
@ -242,7 +242,7 @@ func (d *PublicDashboardStoreImpl) Update(ctx context.Context, cmd SavePublicDas
|
|||
cmd.PublicDashboard.Share,
|
||||
string(timeSettingsJSON),
|
||||
cmd.PublicDashboard.UpdatedBy,
|
||||
cmd.PublicDashboard.UpdatedAt.UTC().Format("2006-01-02 15:04:05"),
|
||||
cmd.PublicDashboard.UpdatedAt.UTC(),
|
||||
cmd.PublicDashboard.Uid)
|
||||
|
||||
if err != nil {
|
||||
|
|
|
|||
Loading…
Reference in New Issue