diff --git a/frontend/src/app/bans/history-format.service.ts b/frontend/src/app/bans/history-format.service.ts index 75956a7..d19b88e 100644 --- a/frontend/src/app/bans/history-format.service.ts +++ b/frontend/src/app/bans/history-format.service.ts @@ -32,7 +32,7 @@ export class HistoryFormatService { public getExpiredTime(entry: PunishmentHistory): string { let suffix: string = ''; if (entry.removedBy !== null && entry.removedBy !== undefined) { - suffix = '(' + entry.removedBy + ')'; + suffix = '(Unbanned by ' + entry.removedBy + ')'; } if (entry.expiryTime <= 0) { return "Permanent " + this.getType(entry) + " " + suffix;