File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
packages/doxdox-renderer-bootstrap/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ exports[`bootstrap render 1`] = `
151
151
<script>
152
152
const params = new URLSearchParams(window.location.search);
153
153
154
- const q = params.get('q');
154
+ const q = params.get('q') || ' ' ;
155
155
156
156
const filterInput = document.querySelector('#filter-methods');
157
157
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ export default async (doc: Doc): Promise<string> => `<!DOCTYPE html>
205
205
<script>
206
206
const params = new URLSearchParams(window.location.search);
207
207
208
- const q = params.get('q');
208
+ const q = params.get('q') || '' ;
209
209
210
210
const filterInput = document.querySelector('#filter-methods');
211
211
You can’t perform that action at this time.
0 commit comments