diff --git a/src/modules/06_retirement/views/Main.vue b/src/modules/06_retirement/views/Main.vue index 435fffc7f..ee3a43109 100644 --- a/src/modules/06_retirement/views/Main.vue +++ b/src/modules/06_retirement/views/Main.vue @@ -147,7 +147,7 @@ const pagination = ref({ const filterSelector = (val: any, update: Function, year: any) => { update(() => { yearOptions.value = yearOptionsFilter.value.filter( - (v: any) => v.name.toLowerCase().indexOf(val.toLowerCase()) > -1 + (v: any) => v.name.valueOf(val.toLowerCase()) > -1 ); }); }; @@ -225,13 +225,13 @@ const typeReportChangeName = (val: string) => { :readonly="false" :borderless="false" :outlined="true" - use-input :hide-dropdown-icon="false" style="min-width: 150px" @filter="(inputValue:any, doneFn:Function) => filterSelector(inputValue, doneFn,'yearOptions' ) " /> +