chore: Entfernen von unnötigen console.log-Ausgaben

This commit is contained in:
Developer 02 2024-07-25 11:48:12 +02:00
parent e3f4b78083
commit 90f55b35ee
3 changed files with 2 additions and 5 deletions

View File

@ -27,8 +27,6 @@ export class DirUserTableComponent extends BaseTableComponent<DirUser, DirUserSe
next: async (response: DirUser[]) => {
const usernames = (await firstValueFrom(this.uService.getAll())).map(u => u.username)
console.log(usernames)
console.log(response)
this.source = response.filter(user => user.samaccountname?.length && !usernames.includes(user.samaccountname[0]));
this.loading = false;
},

View File

@ -22,7 +22,6 @@ export class GroupTableComponent extends BaseTableComponent<Group, GroupService>
}
fetchDataByUsername(username: string) {
console.log(username)
this.gouService.getByUsername(username)
.then(gos_list => gos_list.map(gos => gos.group))
.then(groups => this.source = groups)

View File

@ -19,10 +19,10 @@ export class UserComponent implements AfterViewInit {
cellEditing: GuiCellEdit = {
enabled: true,
rowEdit: (value: any, item: any, index: number) => {
return Boolean(index % 2);
return true;
},
cellEdit: (value: any, item: any, index: number) => {
return Boolean(index % 5);
return true;
}
}