File tree Expand file tree Collapse file tree 2 files changed +60
-0
lines changed
kotlin/com/redhat/devtools/gateway Expand file tree Collapse file tree 2 files changed +60
-0
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ object DevSpacesIcons {
2020
2121 private val WORKSPACE_STARTING = IconLoader .getIcon(" /icons/starting.svg" , javaClass)
2222 private val WORKSPACE_STARTED = IconLoader .getIcon(" /icons/started.svg" , javaClass)
23+ private val WORKSPACE_STOPPING = IconLoader .getIcon(" /icons/stopping.svg" , javaClass)
2324 private val WORKSPACE_STOPPED = IconLoader .getIcon(" /icons/stopped.svg" , javaClass)
25+ private val WORKSPACE_TERMINATING = IconLoader .getIcon(" /icons/stopping.svg" , javaClass)
2426 private val WORKSPACE_FAILED = IconLoader .getIcon(" /icons/failed.svg" , javaClass)
2527
2628 fun getWorkspacePhaseIcon (phase : String ): Icon ? {
@@ -32,6 +34,8 @@ object DevSpacesIcons {
3234 " Starting" -> WORKSPACE_STARTING
3335 " Running" -> WORKSPACE_STARTED
3436 " Stopped" -> WORKSPACE_STOPPED
37+ " Stopping" -> WORKSPACE_STOPPING
38+ " Terminating" -> WORKSPACE_TERMINATING
3539 " Failed" , " Failing" , " Error" -> WORKSPACE_FAILED
3640 else -> null
3741 }
You can’t perform that action at this time.
0 commit comments