mirror of
https://github.com/harness/drone.git
synced 2025-05-10 22:21:22 +08:00
feat: [code-216]: pr listing view
This commit is contained in:
parent
52c5f08381
commit
8dec407dc5
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
.titleRow {
|
.titleRow {
|
||||||
padding-left: var(--spacing-small);
|
padding-left: var(--spacing-small);
|
||||||
align-items: center;
|
align-items: start;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ export default function PullRequests() {
|
|||||||
Cell: ({ row }: CellProps<TypesPullReq>) => {
|
Cell: ({ row }: CellProps<TypesPullReq>) => {
|
||||||
return (
|
return (
|
||||||
<Layout.Horizontal className={css.titleRow} spacing="medium">
|
<Layout.Horizontal className={css.titleRow} spacing="medium">
|
||||||
<PullRequestStateLabel data={row.original} iconOnly />
|
<PullRequestStateLabel iconSize={22} data={row.original} iconOnly />
|
||||||
<Container padding={{ left: 'small' }}>
|
<Container padding={{ left: 'small' }}>
|
||||||
<Layout.Vertical spacing="small">
|
<Layout.Vertical spacing="small">
|
||||||
<Text color={Color.GREY_800} className={css.title}>
|
<Text color={Color.GREY_800} className={css.title}>
|
||||||
@ -100,7 +100,7 @@ export default function PullRequests() {
|
|||||||
{row.original.stats?.conversations}
|
{row.original.stats?.conversations}
|
||||||
</Text>
|
</Text>
|
||||||
</Text>
|
</Text>
|
||||||
<Text color={Color.GREY_500}>
|
<Text color={Color.GREY_500} font={{size:"small"}}>
|
||||||
<StringSubstitute
|
<StringSubstitute
|
||||||
str={getString('pr.statusLine')}
|
str={getString('pr.statusLine')}
|
||||||
vars={{
|
vars={{
|
||||||
|
Loading…
Reference in New Issue
Block a user