mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Enhancement: automatically refresh display list after custom field edit
This commit is contained in:
commit
f6548e0e55
@ -15,6 +15,7 @@ import {
|
|||||||
CustomFieldQueryLogicalOperator,
|
CustomFieldQueryLogicalOperator,
|
||||||
CustomFieldQueryOperator,
|
CustomFieldQueryOperator,
|
||||||
} from 'src/app/data/custom-field-query'
|
} from 'src/app/data/custom-field-query'
|
||||||
|
import { SettingsService } from 'src/app/services/settings.service'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'pngx-custom-fields',
|
selector: 'pngx-custom-fields',
|
||||||
@ -33,7 +34,8 @@ export class CustomFieldsComponent
|
|||||||
public permissionsService: PermissionsService,
|
public permissionsService: PermissionsService,
|
||||||
private modalService: NgbModal,
|
private modalService: NgbModal,
|
||||||
private toastService: ToastService,
|
private toastService: ToastService,
|
||||||
private documentListViewService: DocumentListViewService
|
private documentListViewService: DocumentListViewService,
|
||||||
|
private settingsService: SettingsService
|
||||||
) {
|
) {
|
||||||
super()
|
super()
|
||||||
}
|
}
|
||||||
@ -62,6 +64,7 @@ export class CustomFieldsComponent
|
|||||||
.subscribe((newField) => {
|
.subscribe((newField) => {
|
||||||
this.toastService.showInfo($localize`Saved field "${newField.name}".`)
|
this.toastService.showInfo($localize`Saved field "${newField.name}".`)
|
||||||
this.customFieldsService.clearCache()
|
this.customFieldsService.clearCache()
|
||||||
|
this.settingsService.initializeDisplayFields()
|
||||||
this.reload()
|
this.reload()
|
||||||
})
|
})
|
||||||
modal.componentInstance.failed
|
modal.componentInstance.failed
|
||||||
@ -87,6 +90,7 @@ export class CustomFieldsComponent
|
|||||||
modal.close()
|
modal.close()
|
||||||
this.toastService.showInfo($localize`Deleted field`)
|
this.toastService.showInfo($localize`Deleted field`)
|
||||||
this.customFieldsService.clearCache()
|
this.customFieldsService.clearCache()
|
||||||
|
this.settingsService.initializeDisplayFields()
|
||||||
this.reload()
|
this.reload()
|
||||||
},
|
},
|
||||||
error: (e) => {
|
error: (e) => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user