Merge pull request #2543 from paperless-ngx/feature-improved-title-debounce

Fix: Try to prevent title debounce overwriting
This commit is contained in:
shamoon 2023-01-27 12:24:07 -08:00 committed by GitHub
commit 94ad290e14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -204,6 +204,10 @@ export class DocumentDetailComponent
)
.subscribe({
next: (titleValue) => {
// In the rare case when the field changed just after debounced event was fired.
// We dont want to overwrite whats actually in the text field, so just return
if (titleValue !== this.titleInput.value) return
this.title = titleValue
this.documentForm.patchValue({ title: titleValue })
},