Commit 28d32033 authored by Regis's avatar Regis

change retry and canel '_url' to '_path'

parent 2bb49182
...@@ -71,22 +71,22 @@ ...@@ -71,22 +71,22 @@
</div> </div>
<div class="cancel-retry-btns inline"> <div class="cancel-retry-btns inline">
<a <a
v-if='pipeline.retry_url' v-if='pipeline.retry_path'
class="btn has-tooltip" class="btn has-tooltip"
title="Retry" title="Retry"
rel="nofollow" rel="nofollow"
data-method="post" data-method="post"
:href='pipeline.retry_url' :href='pipeline.retry_path'
> >
<i class="fa fa-repeat"></i> <i class="fa fa-repeat"></i>
</a> </a>
<a <a
v-if='pipeline.cancel_url' v-if='pipeline.cancel_path'
class="btn btn-remove has-tooltip" class="btn btn-remove has-tooltip"
title="Cancel" title="Cancel"
rel="nofollow" rel="nofollow"
data-method="post" data-method="post"
:href='pipeline.cancel_url' :href='pipeline.cancel_path'
data-original-title="Cancel" data-original-title="Cancel"
> >
<i class="fa fa-remove"></i> <i class="fa fa-remove"></i>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment