diff options
-rw-r--r-- | public/metricsgraphics/socorro-lens.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/public/metricsgraphics/socorro-lens.html b/public/metricsgraphics/socorro-lens.html index 19c75253b..f0c226361 100644 --- a/public/metricsgraphics/socorro-lens.html +++ b/public/metricsgraphics/socorro-lens.html @@ -31,8 +31,8 @@ <option value='esr' title='Show crashes on ESR only'>esr</option> </select> <select name='match' id='match' title='Select whether to match signatures exactly or similarly'> - <option value='exact' title='Match signatures exactly'>Exact Match</option> - <option value='like' title='Match signatures similarly' selected=selected>Like Match</option> + <option value='exact' title='Match signatures exactly' selected>Exact Match</option> + <option value='like' title='Match signatures similarly'>Like Match</option> </select> </div> <div style="width:300px; height:75px; color:red; text-align:center; visibility:hidden;" id='warn'></div> @@ -174,7 +174,7 @@ }); } - function loadGraph(search, match) { + function loadGraph(search, match = 'exact') { // Get all signatures from the Bugzilla page var signatures = getSignaturesFromURL(search, match); // Initialize chart data |