chore: add segment id to modal view (#5391)

Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com>
This commit is contained in:
Johannes
2025-04-16 19:56:32 -07:00
committed by GitHub
parent 2bc05e2b4a
commit ff2f7660a6
7 changed files with 12 additions and 0 deletions
@@ -51,6 +51,12 @@ export const SegmentActivityTab = ({ currentSegment }: SegmentActivityTabProps)
{convertDateTimeStringShort(currentSegment.updatedAt?.toString())}
</p>
</div>
<div>
<Label className="text-xs font-normal text-slate-500">
{t("environments.segments.segment_id")}
</Label>
<p className="text-xs text-slate-700">{currentSegment.id.toString()}</p>
</div>
</div>
</div>
);