Skip to content

Commit

Permalink
fix rebase gone wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
abailly-akamai committed Oct 29, 2024
1 parent ddf14fe commit c96670c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const ImageOption = ({ image, isSelected, listItemProps }: Props) => {
</Typography>
</Stack>
<Stack alignItems="center" direction="row" spacing={1}>
{image.capabilities?.includes('distributed-sites') && (
{image.capabilities.includes('distributed-sites') && (
<Tooltip title="This image is compatible with distributed compute regions.">
<div style={{ display: 'flex' }}>
<DistributedRegionIcon height="24px" width="24px" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ export const ImageSelect = (props: Props) => {
},
}}
clearOnBlur
disableSelectAll
label={label || 'Images'}
loading={isLoading}
options={sortedOptions}
Expand Down

0 comments on commit c96670c

Please sign in to comment.