(space *spaces.Space)
| 97 | } |
| 98 | |
| 99 | func getTaskQueueStatus(space *spaces.Space) string { |
| 100 | if space.TaskQueueStopped { |
| 101 | return "Stopped" |
| 102 | } |
| 103 | return "Running" |
| 104 | } |
| 105 | |
| 106 | func getTaskQueueStatusColored(space *spaces.Space) string { |
| 107 | if space.TaskQueueStopped { |