Fix: clear custom field query dropdown on close if invalid

This commit is contained in:
shamoon 2025-03-12 15:46:12 -07:00
parent 169aa8c8bd
commit e7685116ec
No known key found for this signature in database
2 changed files with 9 additions and 0 deletions

View File

@ -93,6 +93,13 @@ describe('CustomFieldsQueryDropdownComponent', () => {
expect(component.selectionModel.queries.length).toBe(1)
})
it('should clear on close if model is invalid', () => {
component.selectionModel.clear()
component.selectionModel.addExpression()
component.onOpenChange(false)
expect(component.selectionModel.isEmpty()).toBeTruthy()
})
it('should support reset the selection model', () => {
component.selectionModel.addExpression()
component.reset()

View File

@ -274,6 +274,8 @@ export class CustomFieldsQueryDropdownComponent extends LoadingComponentWithPerm
this.fieldSelects.first?.focus()
}, 0)
}
} else if (!this.selectionModel.isValid()) {
this.selectionModel.clear()
}
}