Compare commits

...

4 Commits

Author SHA1 Message Date
Pizzosaure
969b64d575 fix(home): upadted Changelog 2023-10-16 15:40:43 +02:00
Pizzosaure
fa56e8453a unrelated change fixed 2023-10-16 10:02:16 +02:00
Pizzosaure
eb64937bc6 feedback PR: condition fixed 2023-10-16 09:43:59 +02:00
Pizzosaure
1502ac317d fix(home):fix misaligned descriptions 2023-10-13 10:56:28 +02:00
2 changed files with 2 additions and 1 deletions

View File

@@ -16,6 +16,7 @@
> Users must be able to say: “I had this issue, happy to know it's fixed”
- [Rolling Pool Update] After the update, when migrating VMs back to their host, do not migrate VMs that are already on the right host [Forum#7802](https://xcp-ng.org/forum/topic/7802) (PR [#7071](https://github.com/vatesfr/xen-orchestra/pull/7071))
- [Home] Fix OS icons alignment (PR [#7090](https://github.com/vatesfr/xen-orchestra/pull/7090))
### Packages to release

View File

@@ -6,7 +6,7 @@ import React from 'react'
const Icon = ({ icon, size = 1, color, fixedWidth, ...props }) => {
props.className = classNames(
props.className,
icon !== undefined ? `xo-icon-${icon}` : 'fa', // Without icon prop, is a placeholder.
icon != null ? `xo-icon-${icon}` : 'fa', // Misaligned problem modification: if no icon or null, apply 'fa'
isInteger(size) ? `fa-${size}x` : `fa-${size}`,
color,
fixedWidth && 'fa-fw'