Skip to content

Commit

Permalink
fix(images) list minimal images after standard images in image select…
Browse files Browse the repository at this point in the history
…ion modal

Signed-off-by: David Edler <[email protected]>
  • Loading branch information
edlerd committed Apr 8, 2024
1 parent 9f2f69d commit c423084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/images/ImageSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ const ImageSelector: FC<Props> = ({ onSelect, onClose }) => {
: localImages
.filter((image) => !image.cached)
.map(localLxdToRemoteImage)
.concat([...minimalImages].reverse().sort(byLtsFirst))
.concat([...canonicalImages].reverse().sort(byLtsFirst))
.concat([...minimalImages].reverse().sort(byLtsFirst))
.concat([...imagesLxdImages])
.filter((image) => archSupported.includes(image.arch));

Expand Down

0 comments on commit c423084

Please sign in to comment.