Skip to content

Commit 709a5b4

Browse files
authoredFeb 27, 2025··
fix(structure): fix issue with locked icon (#8771)
1 parent 6d99e26 commit 709a5b4

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed
 

‎packages/sanity/src/core/releases/components/documentHeader/VersionChip.tsx

+16-11
Original file line numberDiff line numberDiff line change
@@ -202,20 +202,25 @@ export const VersionChip = memo(function VersionChip(props: {
202202
onClick={onClick}
203203
selected={selected}
204204
tone={tone}
205-
iconRight={locked && LockIcon}
206205
onContextMenu={contextMenuHandler}
207-
padding={1}
208-
paddingRight={2}
206+
padding={2}
207+
paddingRight={3}
209208
radius="full"
210209
$isArchived={releaseState === 'archived'}
211-
>
212-
<Flex align="center" gap={0}>
213-
<ReleaseAvatar padding={1} tone={tone} />
214-
<Box flex="none" padding={1}>
215-
<Text size={1}>{text}</Text>
216-
</Box>
217-
</Flex>
218-
</ChipButton>
210+
text={
211+
<Flex align="center" gap={1}>
212+
<ReleaseAvatar padding={1} tone={tone} />
213+
<Box flex="none" padding={1}>
214+
<Text size={1}>{text}</Text>
215+
</Box>
216+
{locked && (
217+
<Box paddingRight={1}>
218+
<LockIcon />
219+
</Box>
220+
)}
221+
</Flex>
222+
}
223+
/>
219224
</span>
220225
</Tooltip>
221226

0 commit comments

Comments
 (0)
Please sign in to comment.