function getPresentationalWidgetTitle()

in src/app/container/widget-container.js [23:34]


function getPresentationalWidgetTitle(state) {
  return {
    text: state.title ||
      (state.project
        ? i18n('Status: {{ project }}', {project: state.project.path})
        : i18n('Status')),
    counter: countFailedBuilds(state.buildStatuses || []),
    href: state.project &&
      state.project.id &&
      `${state.teamcityService.homeUrl}/project.html?projectId=${state.project.id}`
  };
}