Skip to content

Commit

Permalink
NAS-131713: Apps | when an app is in crashed state all buttons for th…
Browse files Browse the repository at this point in the history
…e container is missing
  • Loading branch information
AlexKarpov98 committed Oct 13, 2024
1 parent 22d677a commit 2cfd802
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ <h4>
<div class="container-state">
{{ container.state | mapValue: appContainerStateLabels | translate }}
</div>
@if (app().state === AppState.Running || app().state === AppState.Deploying) {
@if (app().state === AppState.Running || app().state === AppState.Deploying || app().state === AppState.Crashed) {
<div class="container-action">
@if (container.state === AppContainerState.Running) {
<button
Expand Down

0 comments on commit 2cfd802

Please sign in to comment.