chore: correct spelling in search functionality (#418)
Changed 'serachValue' to 'searchValue' for consistent spelling.
This commit is contained in:
parent
67777d64f3
commit
ac434a3d24
|
|
@ -46,8 +46,8 @@ const debouncedSearch = refDebounced(searchValue, 250)
|
|||
|
||||
const filteredMailList = computed(() => {
|
||||
let output: Mail[] = []
|
||||
const serachValue = debouncedSearch.value?.trim()
|
||||
if (!serachValue) {
|
||||
const searchValue = debouncedSearch.value?.trim()
|
||||
if (!searchValue) {
|
||||
output = props.mails
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user