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`] = `
151151 <script>
152152 const params = new URLSearchParams(window.location.search);
153153
154- const q = params.get('q');
154+ const q = params.get('q') || ' ' ;
155155
156156 const filterInput = document.querySelector('#filter-methods');
157157
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ export default async (doc: Doc): Promise<string> => `<!DOCTYPE html>
205205 <script>
206206 const params = new URLSearchParams(window.location.search);
207207
208- const q = params.get('q');
208+ const q = params.get('q') || '' ;
209209
210210 const filterInput = document.querySelector('#filter-methods');
211211
You can’t perform that action at this time.
0 commit comments