Skip to content

Commit c3698ba

Browse files
authored
WebUI: Making PRs with no changes closable (#9294)
1 parent b09b577 commit c3698ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webui/src/pages/repositories/repository/pulls/pullDetails.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ const PullDetailsContent = ({repo, pull}) => {
7070
<Markdown>{pull.description}</Markdown>
7171
</Card.Body>
7272
</Card>
73-
<div className="bottom-buttons-row mt-4 clearfix">
73+
<div className="bottom-buttons-row mt-4">
7474
{error && <AlertError error={error} onDismiss={() => setError(null)}/>}
7575
{formattedDiffError && <AlertError error={formattedDiffError}/>}
7676
{isPullOpen() &&
7777
<>
78-
<div className="bottom-buttons-group float-end">
78+
<div className="bottom-buttons-group d-flex justify-content-end">
7979
<ClosePullButton onClick={changePullStatus(PullStatus.closed)} loading={loading}/>
8080
{!formattedDiffError &&
8181
<MergePullButton

0 commit comments

Comments
 (0)