From 9753655cd03415d841ae2319ede65b6d9219f99f Mon Sep 17 00:00:00 2001 From: checktheroads Date: Wed, 16 Oct 2019 01:18:32 -0700 Subject: [PATCH] rename fields --- hyperglass/render/templates/base.html.j2 | 2 +- hyperglass/static/src/js/hyperglass.es6 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 = [];