Skip to content

Commit 8654782

Browse files
committed
update Started at label Last rebase on main in branch detailed view
1 parent e3f6511 commit 8654782

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frontend/app/src/entities/branches/ui/branch-details.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,20 +105,20 @@ export const BranchDetails = () => {
105105
label: "Origin branch",
106106
},
107107
{
108-
name: "branched_at",
109-
label: "Started at",
110108
name: "created_at",
111109
label: "Created at",
112110
},
113111
{
112+
name: "branched_from",
113+
label: "Last rebase on main",
114114
},
115115
];
116116

117117
const row = {
118118
values: {
119119
name: branch.name,
120120
origin_branch: <Badge className="text-sm">{branch.origin_branch}</Badge>,
121-
branched_at: <DateDisplay date={branch.branched_at} />,
121+
branched_from: <DateDisplay date={branch.branched_from} />,
122122
created_at: <DateDisplay date={branch.created_at} />,
123123
},
124124
};

0 commit comments

Comments
 (0)