Add table for agents and credentials

This commit is contained in:
Laux Dev
2026-02-25 14:29:13 +08:00
parent 1c0532efa7
commit cf54a4a2e8
8 changed files with 480 additions and 5 deletions

View File

@@ -169,7 +169,7 @@ const ProjectsPage = () => {
<table className={styles.table}>
<thead>
<tr>
<th>Name</th>
<th width="25%">Name</th>
<th>Version</th>
<th>CPU Used/Limit</th>
<th>Memory Used/Limit</th>
@@ -178,7 +178,6 @@ const ProjectsPage = () => {
<th></th>
</tr>
</thead>
<tbody>
{sampleData.map((project, index) => {
return (

View File

@@ -19,7 +19,7 @@
.tableContainer > table > thead > tr > th,
.tableContainer > table > tbody > tr > td {
padding: 12px 24px;
gap: 16px;
text-align: start;
align-self: stretch;
}