diff options
author | Kohei Yoshino <kohei.yoshino@gmail.com> | 2018-10-09 17:35:03 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-10-09 17:35:03 +0200 |
commit | 2ae37c378b50b1ae16c35ce74999b19eb91af07d (patch) | |
tree | 1890225d3d7f9a4f4428ac9bdc42171bce1128d6 | |
parent | 510928dff97d0f9dc8c54c89f51c8c1464ca86f5 (diff) | |
download | bugzilla-2ae37c378b50b1ae16c35ce74999b19eb91af07d.tar.gz bugzilla-2ae37c378b50b1ae16c35ce74999b19eb91af07d.tar.xz |
Bug 1497437 - The crash graph should display Exact Match results by default
-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 |