diff --git a/hyperglass/render/templates/base.html.j2 b/hyperglass/render/templates/base.html.j2
index eb8884a..85a8a66 100644
--- a/hyperglass/render/templates/base.html.j2
+++ b/hyperglass/render/templates/base.html.j2
@@ -2,7 +2,7 @@
- {{ branding.site_name }}
+ {{ branding.site_title }}
diff --git a/hyperglass/static/src/js/hyperglass.es6 b/hyperglass/static/src/js/hyperglass.es6
index 95582f4..bde065e 100644
--- a/hyperglass/static/src/js/hyperglass.es6
+++ b/hyperglass/static/src/js/hyperglass.es6
@@ -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 = [];