overhauled occurences of AutoComplete in PermissionEditor and UserSelector, overhauled Occurences of UserSelector and PermissionEditor

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-03-17 01:10:54 +01:00
parent 72f897c40c
commit 5c0efe5730
7 changed files with 7 additions and 13 deletions

View File

@@ -73,7 +73,7 @@
});
if (resp.ok){
var json = await resp.json();
return Object.values(json).filter(nonMember).map(user => { return {id:user.id,display:user.name}});
return Object.values(json).filter(nonMember).map(user => { return {...user,display:user.name}});
} else {
return [];
}