Skip to content

Commit

Permalink
Update admin/app/clusters/[id]/DataTable.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: Nadeesha Cabral <[email protected]>
  • Loading branch information
johnjcsmith and nadeesha authored Dec 29, 2023
1 parent d84c478 commit bfe7749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/app/clusters/[id]/DataTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const DataTable = <T = any,>({
columnDef?: ColumnDef<T>[];
}) => {
if (data === undefined || data.length === 0) {
return <div className="text-center">{noDataMessage}</div>;
return <p className="text-gray-400 mt-2">{noDataMessage}</p>;
}

const keys = Object.keys(data[0]);
Expand Down

0 comments on commit bfe7749

Please sign in to comment.