Skip to content

Commit

Permalink
Send full sha for copy sha command
Browse files Browse the repository at this point in the history
  • Loading branch information
mattseddon committed Sep 2, 2023
1 parent 33c3ec1 commit 0029153
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ const getContextMenuOptions = (

export const RowContextMenu: React.FC<RowProp> = ({
row: {
original: { branch, executorStatus, starred, id, executor, label },
original: { branch, executorStatus, starred, id, executor, sha },
depth
}
}) => {
Expand All @@ -382,7 +382,7 @@ export const RowContextMenu: React.FC<RowProp> = ({
const contextMenuOptions = useMemo(() => {
return getContextMenuOptions(
id,
label,
sha as string,
branch,
isWorkspace,
projectHasCheckpoints,
Expand All @@ -401,7 +401,7 @@ export const RowContextMenu: React.FC<RowProp> = ({
isWorkspace,
depth,
id,
label,
sha,
projectHasCheckpoints,
selectedRows,
hasRunningWorkspaceExperiment
Expand Down

0 comments on commit 0029153

Please sign in to comment.