Skip to content

Commit

Permalink
Merge pull request #85 from akira/akira/ui_tweaks
Browse files Browse the repository at this point in the history
Change detail page link for retry, add button
  • Loading branch information
akira authored Nov 4, 2019
2 parents 8f1c3cb + dac3cac commit 6654f01
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions priv/ember/app/templates/retries/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
<tbody>
{{#each model as |retry|}}
<tr>
<td>
{{#link-to 'retries.show' retry.id}}{{retry.queue}}{{/link-to}}
</td>
<td>{{retry.queue}}</td>
<td>{{retry.class}}</td>
<td>{{retry.prettyArgs}}</td>
<td>{{retry.failed_at}}</td>
<td>{{#link-to 'retries.show' retry.id}}{{retry.failed_at}}{{/link-to}}</td>
<td>{{retry.retry_count}}</td>
<td><button {{action 'removeRetry' retry on="click"}} class="btn btn-danger btn-xs">Delete</button><button {{action 'requeueRetry' retry on="click"}} class="btn btn-secondary btn-xs">Retry</button></td>
<td><button {{action 'removeRetry' retry on="click"}} class="btn btn-danger btn-xs">Delete</button><button {{action 'requeueRetry' retry on="click"}} class="btn btn-secondary btn-xs">Retry</button>
{{#link-to 'retries.show' retry.id class="btn btn-xs"}}Details{{/link-to}}
</td>
</tr>
{{/each}}
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion priv/ember/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">


<meta name="exqui/config/environment" content="%7B%22modulePrefix%22%3A%22exqui%22%2C%22environment%22%3A%22development%22%2C%22rootURL%22%3A%22/%22%2C%22locationType%22%3A%22auto%22%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%2C%22EXTEND_PROTOTYPES%22%3A%7B%22Date%22%3Afalse%7D%7D%2C%22APP%22%3A%7B%22name%22%3A%22exqui%22%2C%22version%22%3A%220.0.0+630ab6d9%22%7D%2C%22exportApplicationGlobal%22%3Atrue%7D" />
<meta name="exqui/config/environment" content="%7B%22modulePrefix%22%3A%22exqui%22%2C%22environment%22%3A%22development%22%2C%22rootURL%22%3A%22/%22%2C%22locationType%22%3A%22auto%22%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%2C%22EXTEND_PROTOTYPES%22%3A%7B%22Date%22%3Afalse%7D%7D%2C%22APP%22%3A%7B%22name%22%3A%22exqui%22%2C%22version%22%3A%220.0.0+d5553a0c%22%7D%2C%22exportApplicationGlobal%22%3Atrue%7D" />

<base href="/<%= assigns[:base] %>" />

Expand Down

0 comments on commit 6654f01

Please sign in to comment.