mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 23:45:44 +01:00
added placeholder buttonGroup, first attempt on fetchingbranch, last correction of regex
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
import React from "react";
|
||||
import type { Repository, Branch } from "@scm-manager/ui-types";
|
||||
import { translate } from "react-i18next";
|
||||
import BranchButtonGroup from "./BranchButtonGroup";
|
||||
|
||||
type Props = {
|
||||
repository: Repository,
|
||||
@@ -26,6 +27,12 @@ class BranchDetailTable extends React.Component<Props> {
|
||||
</td>
|
||||
<td>{repository.name}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td className="has-text-weight-semibold">
|
||||
{t("branch.actions")}
|
||||
</td>
|
||||
<td><BranchButtonGroup repository={repository} branch={branch} /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user