Skip to content

Commit

Permalink
che-5230: avoid watching stack tag changes when section is hidden
Browse files Browse the repository at this point in the history
Signed-off-by: Ann Shumilova <ashumilova@codenvy.com>
  • Loading branch information
ashumilova committed May 30, 2017
1 parent c2990ae commit 7592d48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dashboard/src/app/projects/create-project/create-project.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<md-content id="create-project-content-page"
md-scroll-y flex
class="projects-create-project">
<div ng-show="createProjectCtrl.isCreateProjectInProgress()">
<div ng-if="createProjectCtrl.isCreateProjectInProgress()">
<div id="create-project-panel" class="create-project-progress-panel">
<che-loader class="che-loader-panel" layout="column">
<!--crane and terminals-->
Expand Down Expand Up @@ -83,7 +83,7 @@
</div>
</div>

<div ng-hide="createProjectCtrl.isCreateProjectInProgress()">
<div ng-if="!createProjectCtrl.isCreateProjectInProgress()">

<!-- Select source -->
<che-label-container id="create-project-source-id"
Expand Down

0 comments on commit 7592d48

Please sign in to comment.