diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-09-26 15:09:37 +0200 |
---|---|---|
committer | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-09-27 11:04:22 +0200 |
commit | 8d4e3f45dfb9e31df001a8b25175beac7c1d99c6 (patch) | |
tree | 8f4db4bc1815f7af77e8b88efd28a493889291ec /server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx | |
parent | 9045f371469ade40f42cc4a82fa9d9df95552a3c (diff) | |
download | sonarqube-8d4e3f45dfb9e31df001a8b25175beac7c1d99c6.tar.gz sonarqube-8d4e3f45dfb9e31df001a8b25175beac7c1d99c6.zip |
revert SONAR-9708 Display incremental analysis badge in UI
Diffstat (limited to 'server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx b/server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx index 72a38a1bf50..5e9fcca412b 100644 --- a/server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx +++ b/server/sonar-web/src/main/js/apps/background-tasks/components/TaskComponent.tsx @@ -34,7 +34,7 @@ export default function TaskComponent({ task }: Props) { return ( <td> <span className="note">{task.id}</span> - <TaskType incremental={task.incremental} type={task.type} /> + <TaskType type={task.type} /> </td> ); } @@ -62,7 +62,7 @@ export default function TaskComponent({ task }: Props) { </Link> )} - <TaskType incremental={task.incremental} type={task.type} /> + <TaskType type={task.type} /> </td> ); } |