diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 7461baf9c..46d2e4872 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -2692,18 +2692,14 @@ Create New Field src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html - 21 + 22 - - Add + + Add to document src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html - 24 - - - src/app/components/common/permissions-select/permissions-select.component.html - 7 + 25 @@ -4097,7 +4093,7 @@ src/app/components/common/input/select/select.component.ts - 155 + 158 @@ -4307,6 +4303,13 @@ 45 + + Add + + src/app/components/common/permissions-select/permissions-select.component.html + 7 + + Change diff --git a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html index 90c57dda1..2489c995a 100644 --- a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html +++ b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -6,7 +6,7 @@
  • -
  • diff --git a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.scss b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.scss index f9b9290ed..3240063aa 100644 --- a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.scss +++ b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.scss @@ -1,5 +1,5 @@ .custom-fields-dropdown { - min-width: 350px; + min-width: 380px; // correct position on mobile @media (max-width: 575.98px) { diff --git a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.spec.ts b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.spec.ts index 7b573ccee..7c24578e6 100644 --- a/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.spec.ts @@ -1,10 +1,7 @@ import { ComponentFixture, TestBed } from '@angular/core/testing' import { CustomFieldsDropdownComponent } from './custom-fields-dropdown.component' -import { - HttpClientTestingModule, - HttpTestingController, -} from '@angular/common/http/testing' +import { HttpClientTestingModule } from '@angular/common/http/testing' import { ToastService } from 'src/app/services/toast.service' import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service' import { of } from 'rxjs' diff --git a/src-ui/src/app/components/common/input/select/select.component.html b/src-ui/src/app/components/common/input/select/select.component.html index 5842547c5..ef7be3b62 100644 --- a/src-ui/src/app/components/common/input/select/select.component.html +++ b/src-ui/src/app/components/common/input/select/select.component.html @@ -36,7 +36,7 @@ {{item[bindLabel]}} - @if (allowCreateNew) { + @if (allowCreateNew && !hideAddButton) { diff --git a/src-ui/src/app/components/common/input/select/select.component.ts b/src-ui/src/app/components/common/input/select/select.component.ts index 9b8e43329..19f6375ad 100644 --- a/src-ui/src/app/components/common/input/select/select.component.ts +++ b/src-ui/src/app/components/common/input/select/select.component.ts @@ -94,6 +94,9 @@ export class SelectComponent extends AbstractInputComponent { @Input() disableCreateNew: boolean = false + @Input() + hideAddButton: boolean = false + @Output() createNew = new EventEmitter() diff --git a/src-ui/src/app/components/document-detail/document-detail.component.scss b/src-ui/src/app/components/document-detail/document-detail.component.scss index a7871cc9e..1f6729784 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.scss +++ b/src-ui/src/app/components/document-detail/document-detail.component.scss @@ -17,7 +17,7 @@ --page-margin: 10px auto; } -::ng-deep .ng-select-taggable { +::ng-deep form .ng-select-taggable { max-width: calc(100% - 90px); // fudge factor for (2x) ng-select button width }