removed debug

This commit is contained in:
Timo Bejan 2020-11-14 02:29:17 +02:00
parent 8525706368
commit dd9a033cdd
2 changed files with 1 additions and 5 deletions

View File

@ -1,4 +1,4 @@
<div [class.visible]="menuOpen" *ngIf="canPerformAnnotationActions" class="annotation-actions" [matTooltip]="json">
<div [class.visible]="menuOpen" *ngIf="canPerformAnnotationActions" class="annotation-actions">
<button (click)="acceptSuggestion($event, annotation)" mat-icon-button *ngIf="canAcceptSuggestion">
<mat-icon svgIcon="red:check-alt"></mat-icon>
</button>

View File

@ -106,8 +106,4 @@ export class AnnotationActionsComponent implements OnInit {
get dictionaryColor() {
return this.appStateService.getDictionaryColor('suggestion-add-dictionary');
}
get json() {
return JSON.stringify(this.annotation, null, 2);
}
}