diff --git a/app/authenticated/project/controller.js b/app/authenticated/project/controller.js index a658bc59a..b5d46f273 100644 --- a/app/authenticated/project/controller.js +++ b/app/authenticated/project/controller.js @@ -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.[]'), diff --git a/app/authenticated/project/template.hbs b/app/authenticated/project/template.hbs index ebfe075f1..c24cd6895 100644 --- a/app/authenticated/project/template.hbs +++ b/app/authenticated/project/template.hbs @@ -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}}