Custom Module > Search Form - Not Working

Before I open a support ticket, can someone take a look at this code. I can’t get a simple custom module with search fields to work.

Here’s my test page:
https://bonaparte.treepl.co/test-search-form
I get search results listed when the page loads, but nothing after I try to search for anything. Even if I clear all the fields, I get nothing.

Here’s my code:

<div class="grid-x grid-padding-x grid-margin-x">
    <div class="cell large-4 shade">
        <form>
        	<input type="hidden" name="prop_ModuleId" value="2217" >
        	<label>Keywords</label>
        	<input type="text" name="prop_KeyWords" maxlength="255" value="{{request.request_url.params.prop_KeyWords}}" >
        		
        	<br>
        <label>Intro</label>
        <input type="text" name="prop_Intro" value="{{request.request_url.params.prop_Intro}}" >
        	<br>
        <label>Date</label>
        <div>
        	<span>Min: </span>
         	<input type="datetime-local" name="prop_Date_Min" value="{{request.request_url.params.prop_Date_Min | date: "%Y-%m-%dT%H:%M"}}" >
        	<span>Max: </span>
         	<input type="datetime-local" name="prop_Date_Max" value="{{request.request_url.params.prop_Date_Max | date: "%Y-%m-%dT%H:%M"}}" >
        </div>
        	<br>
        <label>Media</label>
        <input type="text" name="prop_Media" value="{{request.request_url.params.prop_Media}}" >
        	<br>
        <label>By</label>
        <input type="text" name="prop_By" value="{{request.request_url.params.prop_By}}" >
        	<br>
        <label>Title</label>
        <input type="text" name="prop_Title" value="{{request.request_url.params.prop_Title}}" >
        	<br>
        <label>Image 200x300</label>
        <input type="text" name="prop_Image200x300" value="{{request.request_url.params.prop_Image200x300}}" >
        	<br>
        <label>Release Date</label>
        <div>
        	<span>Min: </span>
         	<input type="datetime-local" name="prop_ReleaseDate_Min" value="{{request.request_url.params.prop_ReleaseDate_Min | date: "%Y-%m-%dT%H:%M"}}" >
        	<span>Max: </span>
         	<input type="datetime-local" name="prop_ReleaseDate_Max" value="{{request.request_url.params.prop_ReleaseDate_Max | date: "%Y-%m-%dT%H:%M"}}" >
        </div>
        	<br>
        <label>Expiry Date</label>
        <div>
        	<span>Min: </span>
         	<input type="datetime-local" name="prop_ExpiryDate_Min" value="{{request.request_url.params.prop_ExpiryDate_Min | date: "%Y-%m-%dT%H:%M"}}" >
        	<span>Max: </span>
         	<input type="datetime-local" name="prop_ExpiryDate_Max" value="{{request.request_url.params.prop_ExpiryDate_Max | date: "%Y-%m-%dT%H:%M"}}" >
        </div>
        	<br>
        <label>URL Slug</label>
        <input type="text" name="prop_Slug" value="{{request.request_url.params.prop_Slug}}" >
        	<br>
        <label>Parent Id</label>
        <input type="text" name="prop_ParentId" value="{{request.request_url.params.prop_ParentId}}" >
        	<br>
        <label>URL</label>
        <input type="text" name="prop_Url" value="{{request.request_url.params.prop_Url}}" >
        	<input type="submit" value="Search" >
        </form>
    </div>
    <div class="cell large-8">
        {% component source: "News", layout: "List", isSearchResult: "true", type: "module" %}
    </div>
</div>

Looks like you got this one working @shannonlynd ?

I didn’t change anything, but glad it’s working now :slight_smile: