Skip to content

Commit

Permalink
Reconfigure empty state wording to align with patternfly
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenBW committed Dec 5, 2017
1 parent a39f37e commit a7ae903
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ function ComponentController ($state, $stateParams, VmsService, lodash, EventNot
}
},
genInfo: {
'info': 'No Information Available'
'info': 'No data available'
},
provInfo: {
'info': ['No Information Available']
'info': ['No data available']
},
compliance: {
'title': 'Compliance',
Expand Down Expand Up @@ -90,7 +90,7 @@ function ComponentController ($state, $stateParams, VmsService, lodash, EventNot
}
]
},
emptyState: {icon: 'pficon pficon-help', title: 'No Information Available'}
emptyState: {icon: 'pficon pficon-help', title: 'No data available'}
})
vm.today = new Date()
vm.presentDate = new Date()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function ComponentController ($stateParams, $state, $window, CollectionsApi, Eve
availableTags: [],
credential: {},
listActions: [],
emptyState: {icon: 'pficon pficon-help', title: 'No Information Available'},
emptyState: {icon: 'pficon pficon-help', title: 'No data available'},
// Functions
hasCustomButtons: hasCustomButtons,
disableStopButton: disableStopButton,
Expand Down
2 changes: 1 addition & 1 deletion client/app/services/usage-graphs/usage-graphs.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function ComponentController () {
cpuDataExists: false,
memoryDataExists: false,
storageDataExists: false,
emptyState: {icon: 'pficon pficon-help', title: __('No Information Available')}
emptyState: {icon: 'pficon pficon-help', title: __('No data available')}
})

if (vm.cpuChart.data.total > 0) {
Expand Down

0 comments on commit a7ae903

Please sign in to comment.