diff --git a/frontend/src/app/data/page.tsx b/frontend/src/app/data/page.tsx index 774e1a65..acdc5519 100644 --- a/frontend/src/app/data/page.tsx +++ b/frontend/src/app/data/page.tsx @@ -23,6 +23,7 @@ interface DataModel { created_at: string; method: string; pve_version: string; + status: string; } @@ -164,10 +165,10 @@ const DataFetcher: React.FC = () => {
{filteredData.length} results found
requestSort('status')}>Status | requestSort('nsapp')}>Application | requestSort('os_type')}>OS | requestSort('os_version')}>OS Version | @@ -193,6 +195,7 @@ const DataFetcher: React.FC = () => {
---|---|---|---|
{item.status === "done" ? "✔️" : item.status === "failed" ? "❌" : item.status} | {item.nsapp} | {item.os_type} | {item.os_version} | @@ -232,7 +235,4 @@ const DataFetcher: React.FC = () => { ); }; - - - export default DataFetcher;