Skip to content

Commit

Permalink
Add deployment ID to the deployment details page (#4852)
Browse files Browse the repository at this point in the history
Signed-off-by: David <[email protected]>
  • Loading branch information
dgannon991 authored Mar 30, 2024
1 parent fc136a1 commit bf56025
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import OpenInNewIcon from "@material-ui/icons/OpenInNew";
import dayjs from "dayjs";
import { FC, memo } from "react";
import { Link as RouterLink } from "react-router-dom";
import { CopyIconButton } from "~/components/copy-icon-button";
import { DeploymentStatusIcon } from "~/components/deployment-status-icon";
import { DetailTableRow } from "~/components/detail-table-row";
import { SplitButton } from "~/components/split-button";
Expand Down Expand Up @@ -154,6 +155,19 @@ export const DeploymentDetail: FC<DeploymentDetailProps> = memo(
<div className={classes.content}>
<table>
<tbody>
<DetailTableRow
label="Deployment ID"
value={
<>
{deploymentId}
<CopyIconButton
name="Deployment ID"
value={deploymentId}
size="small"
/>
</>
}
/>
<DetailTableRow
label="Application"
value={
Expand Down

0 comments on commit bf56025

Please sign in to comment.