Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,21 @@
</clr-dg-cell>
}
<clr-dg-cell class="center">
fix/tag-overlap-23110
<div class="tags-wrapper" *ngIf="artifact.tags">
<clr-tooltip class="width-p-100">
<div clrTooltipTrigger class="center">
<div class="center width-p-100">
<div class="tags-wrapper" #tagsSpan>
Comment on lines +327 to +331
<span *ngFor="let tag of artifact.tags" class="tag-item">{{ tag.name }}</span>
</div>
<span
*ngIf="
artifact?.tagNumber > artifact?.tags?.length || (artifact?.tags?.length > 1 && isEllipsisActive(tagsSpan))
"
>({{ artifact?.tagNumber }} )</span
>

@if (artifact.tags) {
<div class="truncated width-p-100">
<clr-tooltip class="width-p-100">
Expand All @@ -337,6 +352,7 @@
isEllipsisActive(tagsSpan) ) {
<span>({{ artifact?.tagNumber }} )</span>
}
main
</div>
</div>
<clr-tooltip-content
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,22 @@
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
flex-shrink: 1;
}

.tags-wrapper {
display: flex;
flex-wrap: wrap;
gap: 4px;
width: 100%;
}

.tag-item {
min-width: 0;
max-width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

.right-pos {
Expand Down
Loading