mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
**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
25 lines
561 B
TypeScript
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;
|