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(() => {
|
const filteredMailList = computed(() => {
|
||||||
let output: Mail[] = []
|
let output: Mail[] = []
|
||||||
const serachValue = debouncedSearch.value?.trim()
|
const searchValue = debouncedSearch.value?.trim()
|
||||||
if (!serachValue) {
|
if (!searchValue) {
|
||||||
output = props.mails
|
output = props.mails
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user