Skip to content

Commit

Permalink
Fix: wrong variable name used (dataRow instead of row)
Browse files Browse the repository at this point in the history
Thanks @wu123456. 

Closes #1926.
  • Loading branch information
arikfr authored Sep 13, 2017
1 parent 94175b8 commit 8bbb1cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/pages/admin/tasks/tasks.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<td>{{row.started_at | toMilliseconds | dateTime }}</td>
<td>{{row.updated_at | toMilliseconds | dateTime }}</td>
<td ng-if="selectedTab === 'in_progress'">
<cancel-query-button query-id="dataRow.query_id" task-id="dataRow.task_id"></cancel-query-button>
<cancel-query-button query-id="row.query_id" task-id="row.task_id"></cancel-query-button>
</td>
</tr>
</tbody>
Expand Down

0 comments on commit 8bbb1cd

Please sign in to comment.