From 68a4f7c4eb162c37f8341450028b29210d13eaf4 Mon Sep 17 00:00:00 2001 From: Supernova Date: Tue, 21 Jul 2026 14:53:42 +0000 Subject: [PATCH] fix: give SelectMultiValue remove icon a fixed width The chip's remove glyph (fa-xmark) had no fixed width, so its intrinsic advance-width shifts with Font Awesome version/metric changes, reflowing chip widths and the multi-value control's hit-target geometry. Co-authored-by: Aaron Mars --- src/components/Select/SelectMultiValue.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Select/SelectMultiValue.js b/src/components/Select/SelectMultiValue.js index abbdb962d..b9d97722a 100644 --- a/src/components/Select/SelectMultiValue.js +++ b/src/components/Select/SelectMultiValue.js @@ -45,6 +45,7 @@ export default class SelectMultiValue extends React.Component { style={{ opacity: 0.5 }} role="button" name="xmark" + fixedWidth onClick={() => { if (!disabled) { onRemove(value);