refactor: remove userFields (#791)

* refactor: process custom fields on cache generate

* refactor: remove userFields
This commit is contained in:
Carlos Valente
2024-02-27 13:23:12 +01:00
committed by GitHub
parent 429df21557
commit d7392b93d2
73 changed files with 1580 additions and 2290 deletions
@@ -72,7 +72,7 @@ export default function ProjectList({ isCreatingProject, onToggleCreate }: Proje
<Panel.Table>
<thead>
<tr>
<th>Project Name</th>
<th className={style.containCell}>Project Name</th>
<th>Date Created</th>
<th>Date Modified</th>
<th />
@@ -100,7 +100,7 @@ export default function ProjectListItem({
</td>
) : (
<>
<td>{filename}</td>
<td className={style.containCell}>{filename}</td>
<td>{new Date(createdAt).toLocaleString()}</td>
<td>{new Date(updatedAt).toLocaleString()}</td>
<td className={style.actionButton}>
@@ -54,4 +54,8 @@
font-size: calc(1rem - 2px);
font-weight: 400;
color: $red-500;
}
}
.containCell {
max-width: 400px;
}