Skip to content

Commit

Permalink
Fix identifier tooltip for type management
Browse files Browse the repository at this point in the history
  • Loading branch information
tkleinke committed Dec 20, 2024
1 parent 91a748a commit 0181643
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
(click)="tooltip.close(); toggleExpandAllGroups();">
<span class="mdi mdi-unfold-more-horizontal"></span>
</button>
<div class="identifier-label" ngbTooltip={{document.resource.identifier}}>{{document.resource.identifier}}</div>
<div class="identifier-label"
[ngbTooltip]="document.resource.identifier"
container="body">{{document.resource.identifier}}</div>
<button *ngIf="!isReadonly() && !showCloseButton" class="edit-button btn btn-light" (click)="startEdit()">
<span class="mdi mdi-pencil"></span>
</button>
Expand Down

0 comments on commit 0181643

Please sign in to comment.