fix(discipline-appealcomplain):sort

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-10-09 14:10:40 +07:00
parent dc3989acae
commit 629efe5abf
4 changed files with 286 additions and 355 deletions

View file

@ -94,7 +94,7 @@ function filterFn() {
function filterOptionFn(val: string, update: Function) {
update(() => {
option.value = store.statusOptions.filter(
(e: any) => e.name.search(val) !== -1
(e: DataOption) => e.name.search(val) !== -1
);
});
}