Skip to content

Commit

Permalink
che-5371: Avoid stack updation on several clicks on same stack item
Browse files Browse the repository at this point in the history
Signed-off-by: Anna Shumilova <ashumilo@redhat.com>
  • Loading branch information
ashumilova committed Jun 14, 2017
1 parent c00ae95 commit d9b9cc4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,9 @@ export class CreateProjectController {
return;
}
this.workspaceConfig = config;
this.updateCurrentStack(stackId);
if (stackId !== this.stackId) {
this.updateCurrentStack(stackId);
}
}

/**
Expand Down

0 comments on commit d9b9cc4

Please sign in to comment.