Task UI In Progress

Indicate tasks which are in progress

Change-Id: I7c4fc42f1dbd3397985af56b93ecb1b5a30076fc
diff --git a/gr-task-plugin/gr-task-plugin.js b/gr-task-plugin/gr-task-plugin.js
index 9fca732..86441d8 100644
--- a/gr-task-plugin/gr-task-plugin.js
+++ b/gr-task-plugin/gr-task-plugin.js
@@ -65,7 +65,8 @@
     },
 
     _getTaskDescription(task) {
-      return task.hint || task.name;
+      let inProgress = task.in_progress ? " (IN PROGRESS)" : "";
+      return (task.hint || task.name) + inProgress;
     },
 
     _computeMessage(task) {