mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Fix UI bug in OS settings modal on "My device" page (#19502)
This commit is contained in:
parent
60f7c3d03c
commit
3992d6f344
2 changed files with 5 additions and 1 deletions
2
changes/19103-my-device-os-settings
Normal file
2
changes/19103-my-device-os-settings
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
- Fixed UI bug where error detail was overflowing the table in "OS settings" modal in "My device"
|
||||
page UI.
|
||||
|
|
@ -138,7 +138,9 @@ const OSSettingsErrorCell = ({
|
|||
// we dont want the default "w250" class so we pass in empty string
|
||||
classes={""}
|
||||
className={
|
||||
showRefetchButton ? `${baseClass}__failed-message` : undefined
|
||||
isFailed || showRefetchButton
|
||||
? `${baseClass}__failed-message`
|
||||
: undefined
|
||||
}
|
||||
/>
|
||||
{showRefetchButton && (
|
||||
|
|
|
|||
Loading…
Reference in a new issue