Fix: ensure horizontal scroll for long tag names in list, wrap tags without parent (#11811)

This commit is contained in:
shamoon
2026-01-18 08:21:20 -08:00
committed by GitHub
parent f8ab81cef7
commit b2541f3e8c
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@
</button>
</ng-template>
<ng-template ng-option-tmp let-item="item" let-index="index" let-search="searchTerm">
<div class="tag-option-row d-flex align-items-center">
<div class="tag-option-row d-flex align-items-center" [class.w-auto]="!getTag(item.id)?.parent">
@if (item.id && tags) {
@if (getTag(item.id)?.parent) {
<i-bs name="list-nested" class="me-1"></i-bs>

View File

@@ -23,7 +23,7 @@
// Dropdown hierarchy reveal for ng-select options
::ng-deep .ng-dropdown-panel .ng-option {
overflow-x: scroll;
overflow-x: scroll !important;
.tag-option-row {
font-size: 1rem;