FIX: Restrict clickable area to the size of heading-toggle
This commit is contained in:
parent
9e27d0b8d3
commit
a518ac58fc
|
@ -19,7 +19,7 @@ export default Discourse.Route.extend({
|
|||
setupController: function(controller, model) {
|
||||
controller.setProperties(model);
|
||||
},
|
||||
|
||||
|
||||
actions: {
|
||||
refreshModel: function() {
|
||||
this.refresh();
|
||||
|
|
|
@ -153,14 +153,14 @@
|
|||
{{directory-toggle field="name" labelKey="explorer.query_name" order=order asc=asc}}
|
||||
</div>
|
||||
</th>
|
||||
<th class="col heading created-by" {{action "sortByProperty" "username"}}>
|
||||
<div class="heading-toggle">
|
||||
<th class="col heading created-by">
|
||||
<div class="heading-toggle" {{action "sortByProperty" "username"}}>
|
||||
{{directory-toggle field="username" labelKey="explorer.query_user" order=order asc=asc}}
|
||||
</div>
|
||||
</th>
|
||||
<th class="col heading created-at" {{action "sortByProperty" "last_run_at"}}>
|
||||
<div class="heading-toggle">
|
||||
{{directory-toggle field="last_run_at" labelKey="explorer.query_time" order=order asc=desc}}
|
||||
<th class="col heading created-at">
|
||||
<div class="heading-toggle" {{action "sortByProperty" "last_run_at"}}>
|
||||
{{directory-toggle field="last_run_at" labelKey="explorer.query_time" order=order asc=asc}}
|
||||
</div>
|
||||
</th>
|
||||
</thead>
|
||||
|
|
Loading…
Reference in New Issue