Skip to content

Commit

Permalink
resolve #379
Browse files Browse the repository at this point in the history
  • Loading branch information
nleroy917 committed Sep 3, 2024
1 parent 4ee18f8 commit a62c1ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/project/project-interface.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export const ProjectInterface = (props: Props) => {
onChange={(subsamples) => {
onChange(subsamples);
}}
data={currentHistoryId ? historyData?._subsample_list || [] : newSubsamples}
data={currentHistoryId ? sampleListToArrays(historyData?._subsample_list || []) : newSubsamples}
height={window.innerHeight - 15 - (projectDataRef.current?.offsetTop || 300)}
readOnly={!userCanEdit}
/>
Expand Down

0 comments on commit a62c1ce

Please sign in to comment.