mirror of
https://github.com/ansible/awx.git
synced 2026-03-03 09:48:51 -03:30
adding pipe delimeter to title
This commit is contained in:
@@ -229,7 +229,8 @@ var awApp = angular.module('awApp', [
|
||||
$rootScope.BRAND_NAME = AppStrings.get('BRAND_NAME');
|
||||
$rootScope.tabTitle = `Ansible ${$rootScope.BRAND_NAME}`;
|
||||
$rootScope.$watch('$state.current.ncyBreadcrumbLabel', function(title) {
|
||||
$rootScope.tabTitle = `Ansible ${$rootScope.BRAND_NAME} ${title || ""}`;
|
||||
title = (title) ? "| " + title : "";
|
||||
$rootScope.tabTitle = `Ansible ${$rootScope.BRAND_NAME} ${title}`;
|
||||
});
|
||||
|
||||
function activateTab() {
|
||||
|
||||
Reference in New Issue
Block a user