diff --git a/src-ui/src/app/components/common/input/document-link/document-link.component.html b/src-ui/src/app/components/common/input/document-link/document-link.component.html index 94f4f21b4..70b6d8263 100644 --- a/src-ui/src/app/components/common/input/document-link/document-link.component.html +++ b/src-ui/src/app/components/common/input/document-link/document-link.component.html @@ -40,7 +40,7 @@ (change)="onChange(selectedDocuments)">
- +  {{document.title}} diff --git a/src-ui/src/app/components/common/input/document-link/document-link.component.scss b/src-ui/src/app/components/common/input/document-link/document-link.component.scss index 5541def31..1c83a7122 100644 --- a/src-ui/src/app/components/common/input/document-link/document-link.component.scss +++ b/src-ui/src/app/components/common/input/document-link/document-link.component.scss @@ -3,7 +3,19 @@ .ng-value { background-color: transparent !important; - border-color: transparent; + border-color: transparent !important; + } +} + +.paperless-input-select.disabled { + --bs-btn-disabled-border-color: transparent; + ::ng-deep ng-select { + .ng-select-container { + div, .ng-arrow-wrapper, input { + cursor: not-allowed; + } + background-color: var(--pngx-bg-alt) !important; + } } } diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html index e44d7a713..25a512463 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.html +++ b/src-ui/src/app/components/document-detail/document-detail.component.html @@ -344,8 +344,8 @@ @if (!hasNext()) { } + -
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.ts b/src-ui/src/app/components/document-detail/document-detail.component.ts index 084efefe7..6cd26b368 100644 --- a/src-ui/src/app/components/document-detail/document-detail.component.ts +++ b/src-ui/src/app/components/document-detail/document-detail.component.ts @@ -1020,10 +1020,14 @@ export class DocumentDetailComponent } return ( !this.document || - this.permissionsService.currentUserHasObjectPermissions( + (this.permissionsService.currentUserCan( PermissionAction.Change, - doc - ) + PermissionType.Document + ) && + this.permissionsService.currentUserHasObjectPermissions( + PermissionAction.Change, + doc + )) ) }