[bugfix] button needs to be of type submit

This commit is contained in:
2026-02-17 13:52:42 -05:00
parent 8918a040b6
commit 3226527657

View File

@@ -10,7 +10,7 @@ const { query } = Astro.props;
<input type="text" name="q" class="form-control w-100 mb-2" placeholder="Search cards..." value={query} />
</div>
<div>
<input type="button" class="btn btn-primary mb-2" value="Search" />
<input type="submit" class="btn btn-primary mb-2" value="Search" />
</div>
</form>
</div>