rename fields

This commit is contained in:
checktheroads 2019-10-16 01:18:32 -07:00
parent bb01709713
commit 9753655cd0
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
<html class="h-100">
<head>
<title>{{ branding.site_name }}</title>
<title>{{ branding.site_title }}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

View file

@ -146,7 +146,7 @@ queryLocation.on('changed.bs.select', (e, clickedIndex, isSelected, previousValu
const intersectingVrfs = Array.from(findIntersection(...selectedVrfs()));
// Add the VRF select element
if (vrfContainer.find('#query_vrf').length === 0) {
vrfContainer.addClass('col').html(vrfSelect(hgConf.config.branding.text.vrf));
vrfContainer.addClass('col').html(vrfSelect(hgConf.config.branding.text.query_vrf));
}
// Build the select options for each VRF in array
const vrfHtmlList = [];