Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
MacOS committed Mar 3, 2025
2 parents 5c6afa9 + 2e7c28c commit 6e40f76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe('VersionHistoryTable', () => {
version: mockVersions[1].version,
index: 1,
confirm: false,
timestamp: mockVersions[1].created,
version_date: mockVersions[1].created,
});
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const VersionHistoryTable = ({ versions, canCompare, onCheck, onRestore }
version: version.version,
index: idx,
confirm: false,
timestamp: version.created,
version_date: version.created,
});
}}
>
Expand Down
2 changes: 1 addition & 1 deletion public/app/features/dashboard-scene/utils/interactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const DashboardInteractions = {
},

// Dashboards versions interactions
versionRestoreClicked: (properties: { version: number; index?: number; confirm: boolean; timestamp?: Date }) => {
versionRestoreClicked: (properties: { version: number; index?: number; confirm: boolean; version_date?: Date }) => {
reportDashboardInteraction('version_restore_clicked', properties);
},
showMoreVersionsClicked: () => {
Expand Down

0 comments on commit 6e40f76

Please sign in to comment.