Skip to content

Commit

Permalink
fix(UI): correct versions and title alignment (#666)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiahan authored Dec 30, 2024
1 parent 7e49baa commit 39d5d6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/components/src/components/Alerts/collapse.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export const AlertCollapse = (props: {
<Typography.Text strong>
{versions.length}
</Typography.Text>
<Typography.Text> versions was found</Typography.Text>
<Typography.Text> versions found</Typography.Text>
</Space>
<Tabs
size="middle"
Expand All @@ -161,7 +161,7 @@ export const AlertCollapse = (props: {
return {
label: (
<Space className={styles.drawerLabelTitle}>
<div>v.{target.version}</div>
<div>v{target.version}</div>
<Tag className={styles.drawerLabelSize}>
{formatSize(targetSize.sourceSize)}
</Tag>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.title {
display: flex;
align-items: center;
justify-content: space-between;
}

Expand Down

0 comments on commit 39d5d6e

Please sign in to comment.