Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Console: Don't uppercase the user name, as it is written by himself
Browse files Browse the repository at this point in the history
  • Loading branch information
ammendonca committed Jun 2, 2015
1 parent 408c6b4 commit 7107e06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div ng-controller="HawkularMetrics.AddUrlController as vm">
<div class="hk-fade-in" ng-class="{'hk-urls-list text-center': vm.resourceList.length === 0}">
<h1 class="text-center">Hello {{userDetails.firstName | firstUpper}}!</h1>
<h1 class="text-center">Hello {{userDetails.firstName}}!</h1>
<i class="fa fa-line-chart" ng-show="vm.resourceList.length === 0"></i>
<h2 ng-show="vm.resourceList.length === 0">Collect metrics from a website that you want to monitor.</h2>
<form class="form-horizontal hk-add-url" name="addUrlForm" role="form" novalidate ng-submit="vm.addUrl(vm.resourceUrl)">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="hk-application-servers" ng-controller="HawkularMetrics.AppServerListController as vm">

<h1 class="text-center">{{userDetails.firstName | firstUpper}}'s application servers</h1>
<h1 class="text-center">{{userDetails.firstName}}'s application servers</h1>

<div class="blank-slate-pf" ng-show="vm.resourceList.$resolved && vm.resourceList.length === 0">
<div class="blank-slate-pf-icon">
Expand Down

0 comments on commit 7107e06

Please sign in to comment.