Skip to content

Commit

Permalink
feat(ui): pullrequest display
Browse files Browse the repository at this point in the history
  • Loading branch information
itupix committed Mar 11, 2021
1 parent a69cc90 commit 8e36317
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/Pullrequest/Pullrequest.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,16 @@
<h2 class="author">
{pullRequest.user.name} - {getDateStr(new Date(pullRequest.date))}
</h2>
{#if pullRequest.projectName}
<span class="project">{pullRequest.projectName}</span>
{/if}
</header>
<h3 class="title">
{pullRequest.title}
</h3>
<p class="repo">{pullRequest.repositoryName}</p>
<p class="repo">
{#if pullRequest.projectName}
{pullRequest.projectName}&nbsp;/
{/if}
{pullRequest.repositoryName}
</p>
</div>
<footer>
{#if pullRequest.isAutoComplete}
Expand Down Expand Up @@ -90,8 +92,6 @@
}
header {
display: flex;
align-items: center;
margin-bottom: 0.5rem;
font-size: 0.8rem;
color: #aaa;
Expand Down

0 comments on commit 8e36317

Please sign in to comment.