-
Couldn't load subscription status.
- Fork 712
Show neutral icon for container exiting with status code 0 #8477
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
9732674
f18f4a0
00d2ca4
578c616
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -42,7 +42,7 @@ private static (Icon icon, Color color) GetStateIcon(ResourceViewModel resource) | |
| icon = new Icons.Filled.Size16.ErrorCircle(); | ||
| color = Color.Error; | ||
| } | ||
| else if (resource.IsFinishedState()) | ||
| else if (resource.TryGetExitCode(out _) && (resource.IsFinishedState() || resource.IsExitedState())) | ||
|
||
| { | ||
| // Process completed successfully. | ||
| icon = new Icons.Regular.Size16.RecordStop(); | ||
|
|
||

Uh oh!
There was an error while loading. Please reload this page.