This commit is contained in:
Markos Gogoulos
2026-03-06 16:56:29 +02:00
parent ab5f86ee4d
commit a6f7ce71c6
4 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ export const BulkActionChangeOwnerModal: React.FC<BulkActionChangeOwnerModalProp
}
try {
const response = await fetch(`/api/v1/users?name=${encodeURIComponent(name)}`);
const response = await fetch(`/api/v1/users?name=${encodeURIComponent(name)}&exclude_self=True`);
if (!response.ok) {
throw new Error(translateString('Failed to search users'));
}