fleet/frontend/pages/ManageControlsPage/OSUpdates/components/OSVersionsEmptyState/OSVersionsEmptyState.tsx
Gabriel Hernandez c6474eca82
add card for consistancy on the os versions empty table (#33470)
**Related issue:** Fixes #31688

updates the empty table state on os versions table to be consistant with
other empty states

**before**

<img width="1032" height="339" alt="image"
src="https://github.com/user-attachments/assets/bf5e353e-fc0e-4d40-b864-c9a47e8f93c1"
/>

**after**

<img width="1086" height="366" alt="image"
src="https://github.com/user-attachments/assets/2d2c7800-bbb7-4721-949b-bdfbb9adfb24"
/>


- [x] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
- [x] QA'd all new/changed functionality manually
2025-09-29 18:10:24 +01:00

25 lines
561 B
TypeScript

import React from "react";
import EmptyTable from "components/EmptyTable";
import Card from "components/Card";
const baseClass = "os-versions-empty-state";
const OSVersionsEmptyState = () => {
return (
<Card>
<EmptyTable
className={`${baseClass}__empty-table`}
header="No OS versions detected"
info={
<span>
This report is updated every hour to protect
<br /> the performance of your devices.
</span>
}
/>
</Card>
);
};
export default OSVersionsEmptyState;