ui: show address and properly depend on Checks

This commit is contained in:
Jack Pearkes 2014-04-29 15:30:00 -04:00
parent af10fb355e
commit 8999812c56
2 changed files with 2 additions and 3 deletions

View File

@ -233,7 +233,7 @@
</script>
<script type="text/x-handlebars" id="node">
<h2 class="no-margin">{{ model.Node.Node }}</h2>
<h2 class="no-margin">{{ model.Node.Node }} <small> {{ model.Node.Address }}</small></h2>
<hr>
<h5>Checks</h5>

View File

@ -46,7 +46,7 @@ App.Node = Ember.Object.extend({
//
failingChecks: function() {
return this.get('Checks').filterBy('Status', 'critical').get('length');
}.property('failingChecks'),
}.property('Checks'),
//
// The number of passing checks within the service.
@ -104,7 +104,6 @@ App.Key = Ember.Object.extend({
grandParentKey: function() {
var parts = this.get('keyParts').toArray();
console.log(parts)
parts.pop();
parts.pop();