Merge pull request #1722 from vincent99/master

Remove construction
This commit is contained in:
Vincent Fiduccia 2018-03-07 12:31:18 -07:00 committed by GitHub
commit f05db0200e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 14 deletions

View File

@ -41,11 +41,7 @@ export default Controller.extend({
}
},
showWarning: function() {
return this.get('prefs.projects-warning') !== 'hide';
}.property('prefs.projects-warning'),
showClusterWelcome: function() {
return this.get('scope.currentCluster.state') === 'inactive' && !this.get('nodes.length');
}.property('scope.currentCluster.state','nodes.[]'),

View File

@ -1,11 +1 @@
{{#if showWarning}}
{{banner-message
color="bg-warning mt-0 mb-10"
icon="icon icon-garbage"
message="Under construction: Many areas of managing resources within a project are currently incomplete."
showClose=true
close=(action "hideWarning")
}}
{{/if}}
{{outlet}}