Signed-off-by: mo <mcassidy@hchb.com>
This commit is contained in:
mo
2022-04-28 08:42:58 -05:00
parent 6392fbe3c0
commit 1000bdb2ca
2 changed files with 7 additions and 1 deletions
@@ -38,6 +38,12 @@ export interface AzureDevOpsApi {
options?: RepoBuildOptions,
): Promise<{ items: RepoBuild[] }>;
getGitTags(
projectName: string,
repoName: string,
options?: PullRequestOptions,
): Promise<{ items: PullRequest[] }>;
getPullRequests(
projectName: string,
repoName: string,
@@ -124,7 +124,7 @@ export const GitTagTable = ({ defaultLimit }: PullRequestTableProps) => {
<Box display="flex" alignItems="center">
<AzurePullRequestsIcon style={{ fontSize: 30 }} />
<Box mr={1} />
Azure Repos - Pull Requests ({items ? items.length : 0})
Azure Repos - Git Tags ({items ? items.length : 0})
<Box position="absolute" right={320} top={20}>
<PullRequestStatusButtonGroup
status={pullRequestStatusState}