Strengthen the dependencies on canCancel in build

For some reason it sometimes is not refreshed correctly without these
additional dependencies.
This commit is contained in:
Piotr Sarnacki 2016-02-11 13:54:07 +01:00
parent 20e8a47576
commit 707c77aeee
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ Build.reopen({
canCancel: function() {
return this.get('jobs').filterBy('canCancel').length;
}.property('jobs.@each.canCancel'),
}.property('jobs.@each.canCancel', 'jobs', 'jobs.[]'),
canRestart: Ember.computed.alias('isFinished'),

View File

@ -106,7 +106,7 @@ export default Model.extend(DurationCalculations, {
canCancel: function() {
return !this.get('isFinished');
}.property('state'),
}.property('isFinished'),
canRestart: Ember.computed.alias('isFinished'),