Skip to content

Commit 6c4dfe4

Browse files
fix: use small pill size when viewing version information (#12844)
![2025-06-17_18-59](https://github.com/user-attachments/assets/9b8d7e73-2d49-42a5-a504-34e6efd81283) ![2025-06-17_18-59_1](https://github.com/user-attachments/assets/732a44ff-5af1-4536-bf7b-fe1dc91d65ed) This fixes bug listed here -- #12839 I have not touched the general styling, but in my opinion this component could benefit from using a margin. --------- Co-authored-by: Philip <[email protected]> Co-authored-by: Jessica Rynkar <[email protected]> Co-authored-by: Jessica Chowdhury <[email protected]>
1 parent a5ec55c commit 6c4dfe4

File tree

1 file changed

+1
-1
lines changed
  • packages/next/src/views/Versions/cells/AutosaveCell

1 file changed

+1
-1
lines changed

packages/next/src/views/Versions/cells/AutosaveCell/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const AutosaveCell: React.FC<AutosaveCellProps> = ({
3535

3636
return (
3737
<div className={`${baseClass}__items`}>
38-
{rowData?.autosave && <Pill>{t('version:autosave')}</Pill>}
38+
{rowData?.autosave && <Pill size="small">{t('version:autosave')}</Pill>}
3939
<VersionPillLabel
4040
currentlyPublishedVersion={currentlyPublishedVersion}
4141
disableDate={true}

0 commit comments

Comments
 (0)