filter description
This commit is contained in:
@ -72,6 +72,7 @@ async function searchListings() {
|
||||
const maxPriceInput = document.getElementById('maxPrice').value;
|
||||
const maxPrice = maxPriceInput ? parseInt(maxPriceInput) : 1000000000;
|
||||
const numListings = parseInt(document.getElementById('numListings').value) || 25;
|
||||
const powerSearchDescriptionTerm = document.getElementById('powerSearchDescTerm').value.trim();
|
||||
|
||||
if (!searchTerm) {
|
||||
showStatus('Bitte Suchbegriff eingeben', 'error');
|
||||
@ -96,7 +97,8 @@ async function searchListings() {
|
||||
search_term: searchTerm,
|
||||
min_price: minPrice,
|
||||
max_price: maxPrice,
|
||||
num_listings: numListings
|
||||
num_listings: numListings,
|
||||
search_term_desc: powerSearchDescriptionTerm
|
||||
})
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user