We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d84fb4 commit 771b95aCopy full SHA for 771b95a
src/app/submissions/submissions.list.html
@@ -50,7 +50,9 @@ <h2>Submissions for Challenge # {{challengeObj.name}}</h2>
50
</td>
51
<td>{{submission.status}}</td>
52
<td>
53
- <i class="fa fa-repeat" ng-class="{'fa-spin' : progress[submission.id]}" ng-click="reprocess(submission)" ng-show="submission.status === 'ERROR'"></i>
+ <button class="danger" ng-click="reprocess(submission)" ng-disabled="progress[submission.id]" ng-show="submission.status === 'ERROR'"> Re-process
54
+ <i class="fa fa-repeat" ng-class="{'fa-spin' : progress[submission.id]}"></i>
55
+ </button>
56
57
</tr>
58
</tbody>
0 commit comments