File tree 1 file changed +16
-11
lines changed
1 file changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -202,20 +202,25 @@ export const VersionChip = memo(function VersionChip(props: {
202
202
onClick = { onClick }
203
203
selected = { selected }
204
204
tone = { tone }
205
- iconRight = { locked && LockIcon }
206
205
onContextMenu = { contextMenuHandler }
207
- padding = { 1 }
208
- paddingRight = { 2 }
206
+ padding = { 2 }
207
+ paddingRight = { 3 }
209
208
radius = "full"
210
209
$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
+ />
219
224
</ span >
220
225
</ Tooltip >
221
226
You can’t perform that action at this time.
0 commit comments