mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
Clear picture in between loads
This commit is contained in:
@@ -21,6 +21,7 @@ public class GroupModel
|
||||
string? descriptionValue = ldapData.GetValueOrDefault("description");
|
||||
if (descriptionValue is null)
|
||||
{
|
||||
DisplayName = Cn;
|
||||
Permissions = [];
|
||||
}
|
||||
else
|
||||
|
||||
@@ -23,7 +23,10 @@ public class MigrationService : IHostedService
|
||||
await MigrateAsync();
|
||||
}
|
||||
|
||||
public async Task StopAsync(CancellationToken cancellationToken) { }
|
||||
public async Task StopAsync(CancellationToken cancellationToken)
|
||||
{
|
||||
await Task.CompletedTask;
|
||||
}
|
||||
|
||||
public async Task<MigrationModel> MigrateAsync()
|
||||
{
|
||||
|
||||
@@ -758,6 +758,7 @@
|
||||
// Photo
|
||||
const imgEl = row.querySelector('td:first-child img');
|
||||
const detailPhoto = document.getElementById('detailPhoto');
|
||||
detailPhoto.src = '';
|
||||
detailPhoto.src = `/Home/UserPhoto?uid=${data.uid}&size=256`;
|
||||
detailModal.show();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user