Skip to content

Commit

Permalink
Don't display log level in audit logs view
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocobozzz committed Dec 30, 2020
1 parent dfed784 commit 1227fe0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/src/app/+admin/system/logs/logs.component.html
Expand Up @@ -21,6 +21,7 @@
(ngModelChange)="refresh()"
[clearable]="false"
[searchable]="false"
*ngIf="!isAuditLog()"
>
<ng-option *ngFor="let levelChoice of levelChoices" [value]="levelChoice.id">
<ng-container *ngIf="levelChoice.id === 'debug'"><span style="font-size:80%;color:lightgray;vertical-align:text-top;">&#11044;</span> {{ levelChoice.label }}</ng-container>
Expand Down
2 changes: 1 addition & 1 deletion client/src/app/+admin/system/logs/logs.component.ts
Expand Up @@ -25,7 +25,7 @@ export class LogsComponent implements OnInit {
constructor (
private logsService: LogsService,
private notifier: Notifier
) { }
) { }

ngOnInit (): void {
this.buildTimeChoices()
Expand Down

0 comments on commit 1227fe0

Please sign in to comment.