Added host case to the GetTargetTitle factory

This commit is contained in:
Michael Abashian
2016-03-02 09:46:07 -05:00
parent 9d24236632
commit f2f51ab132

View File

@@ -49,6 +49,9 @@ export default
case 'schedule': case 'schedule':
rtnTitle = 'SCHEDULES'; rtnTitle = 'SCHEDULES';
break; break;
case 'host':
rtnTitle = 'HOSTS';
break;
} }
return rtnTitle; return rtnTitle;