added chrom

This commit is contained in:
PxlLoewe
2025-06-05 10:18:52 -07:00
parent 59f3da5c84
commit 63166b602a
9 changed files with 65 additions and 43 deletions

View File

@@ -90,6 +90,13 @@ export default function SortableTable<TData>({
))}
</tr>
))}
{table.getRowModel().rows.length === 0 && (
<tr>
<td colSpan={columns.length} className="text-center font-bold text-sm text-gray-500">
Keine Daten gefunden
</td>
</tr>
)}
</tbody>
</table>
</div>