Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/features/latest-tag-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async function init(): Promise<false | void> {
});

const link = (
<a className="btn btn-sm btn-outline ml-2 flex-self-center" href={String(url)}>
<a className="btn btn-outline ml-2 flex-self-center" href={String(url)}>
<TagIcon/>
</a>
);
Expand Down Expand Up @@ -126,7 +126,7 @@ async function init(): Promise<false | void> {
if (pageDetect.isRepoRoot()) {
const compareLink = (
<a
className="btn btn-sm btn-outline tooltipped tooltipped-ne"
className="btn btn-outline tooltipped tooltipped-ne"
href={`/${getRepoURL()}/compare/${latestTag}...${defaultBranch}`}
aria-label={`Compare ${latestTag}...${defaultBranch}`}
>
Expand Down