Frontend coerce empty display_fields to null

This commit is contained in:
shamoon 2025-02-19 15:23:06 -08:00
parent dac91c1e9a
commit 7f5f982a28
No known key found for this signature in database
2 changed files with 24 additions and 2 deletions

View File

@ -114,6 +114,25 @@ describe(`Additional service tests for SavedViewService`, () => {
])
})
it('should treat empty display_fields as null', () => {
subscription = service
.patch({
id: 1,
name: 'Saved View',
show_on_dashboard: true,
show_in_sidebar: true,
sort_field: 'name',
sort_reverse: true,
filter_rules: [],
display_fields: [],
})
.subscribe()
const req = httpTestingController.expectOne(
`${environment.apiBaseUrl}${endpoint}/1/`
)
expect(req.request.body.display_fields).toBeNull()
})
beforeEach(() => {
// Dont need to setup again

View File

@ -87,8 +87,11 @@ export class SavedViewService extends AbstractPaperlessService<SavedView> {
return super.create(o).pipe(tap(() => this.reload()))
}
update(o: SavedView) {
return super.update(o).pipe(tap(() => this.reload()))
patch(o: SavedView): Observable<SavedView> {
if (o.display_fields?.length === 0) {
o.display_fields = null
}
return super.patch(o)
}
patchMany(objects: SavedView[]): Observable<SavedView[]> {