Skip to content

Commit b8c98c9

Browse files
committed
Fix qsa warning in quote search modal
1 parent 39245bc commit b8c98c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/ts/modals/quote-search.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function applyQuoteLengthFilter(quotes: Quote[]): Quote[] {
5656
if (!modal.isOpen()) return [];
5757
const quoteLengthDropdown = modal
5858
.getModal()
59-
.qs<HTMLSelectElement>(".quoteLengthFilter");
59+
.qs<HTMLSelectElement>("select.quoteLengthFilter");
6060
const selectedOptions = quoteLengthDropdown
6161
? Array.from(quoteLengthDropdown.native.selectedOptions)
6262
: [];

0 commit comments

Comments
 (0)