Skip to content

Commit

Permalink
Fix: can not show the detail of the first revision (#612)
Browse files Browse the repository at this point in the history
Signed-off-by: barnettZQG <[email protected]>

Signed-off-by: barnettZQG <[email protected]>
  • Loading branch information
barnettZQG authored Aug 31, 2022
1 parent 3e7ba77 commit bf2b1de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const ShowRevision = (props: RevisionProps) => {
React.useEffect(() => {
loadRevisionDetail(props.appName, props.revision, setDetail);
}, [props.appName, props.revision]);
const containerId = props.revision.version;
const containerId = props.revision.version + 'detail';

return (
<React.Fragment>
Expand Down

0 comments on commit bf2b1de

Please sign in to comment.