stabile version

This commit is contained in:
2026-04-11 11:04:48 +02:00
parent d1425f4f7d
commit 2804c3392e
9 changed files with 318 additions and 161 deletions

View File

@@ -122,11 +122,11 @@ export default function OrganizationPage() {
width: 120,
sortable: false,
renderCell: ({ row }) => (
<Tooltip title="Löschen">
<IconButton size="small" color="error" onClick={() => handleDelete(row.id)}>
<Tooltip title="">
<IconButton title="löschen" size="small" color="error" onClick={() => handleDelete(row.id)}>
<DeleteOutlineIcon fontSize="small" />
</IconButton>
<IconButton size="small" color="grey" onClick={() => handleEdit(row.id)}>
<IconButton title="bearbeiten" size="small" color="grey" onClick={() => handleEdit(row.id)}>
<EditOutlinedIcon fontSize="small" />
</IconButton>
</Tooltip>