We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3f6511 commit 8654782Copy full SHA for 8654782
frontend/app/src/entities/branches/ui/branch-details.tsx
@@ -105,20 +105,20 @@ export const BranchDetails = () => {
105
label: "Origin branch",
106
},
107
{
108
- name: "branched_at",
109
- label: "Started at",
110
name: "created_at",
111
label: "Created at",
112
113
+ name: "branched_from",
+ label: "Last rebase on main",
114
115
];
116
117
const row = {
118
values: {
119
name: branch.name,
120
origin_branch: <Badge className="text-sm">{branch.origin_branch}</Badge>,
121
- branched_at: <DateDisplay date={branch.branched_at} />,
+ branched_from: <DateDisplay date={branch.branched_from} />,
122
created_at: <DateDisplay date={branch.created_at} />,
123
124
};
0 commit comments