refs #6694 VnLocation #154

Merged
jsegarra merged 31 commits from 6280_vnLocation into dev 2024-01-29 13:23:04 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 5ebeb7fe47 - Show all commits

View File

@ -72,8 +72,8 @@ onMounted(() => {
locationFilter()
})
function locationFilter(search) {
let where = { search };
postcodesRef.value.fetch({ where, limit: 30});
let args = { filter:{limit: 30}, search};
jsegarra marked this conversation as resolved Outdated
Outdated
Review

No veo en que momento se hace el filtrado de datos a las tablas.

No veo en que momento se hace el filtrado de datos a las tablas.
postcodesRef.value.fetch({args});
}
function handleFetch( data) {
postcodesOptions.value = data;