Enhancement: automatically refresh display list after custom field edit

This commit is contained in:
shamoon 2024-10-20 23:48:16 -07:00 committed by shamoon
commit f6548e0e55

View File

@ -15,6 +15,7 @@ import {
CustomFieldQueryLogicalOperator,
CustomFieldQueryOperator,
} from 'src/app/data/custom-field-query'
import { SettingsService } from 'src/app/services/settings.service'
@Component({
selector: 'pngx-custom-fields',
@ -33,7 +34,8 @@ export class CustomFieldsComponent
public permissionsService: PermissionsService,
private modalService: NgbModal,
private toastService: ToastService,
private documentListViewService: DocumentListViewService
private documentListViewService: DocumentListViewService,
private settingsService: SettingsService
) {
super()
}
@ -62,6 +64,7 @@ export class CustomFieldsComponent
.subscribe((newField) => {
this.toastService.showInfo($localize`Saved field "${newField.name}".`)
this.customFieldsService.clearCache()
this.settingsService.initializeDisplayFields()
this.reload()
})
modal.componentInstance.failed
@ -87,6 +90,7 @@ export class CustomFieldsComponent
modal.close()
this.toastService.showInfo($localize`Deleted field`)
this.customFieldsService.clearCache()
this.settingsService.initializeDisplayFields()
this.reload()
},
error: (e) => {