ui: show address and properly depend on Checks
This commit is contained in:
parent
af10fb355e
commit
8999812c56
|
@ -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>
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue