possible regression fix
This commit is contained in:
parent
a6fbf7d86b
commit
b48f04e772
|
@ -24,7 +24,7 @@ export default Ember.Component.extend(StringBuffer, {
|
||||||
className += options.order || "";
|
className += options.order || "";
|
||||||
|
|
||||||
var sortIcon = "";
|
var sortIcon = "";
|
||||||
if(this.get("order") === options.order){
|
if(this.get("order") === options.order && options.sortable){
|
||||||
className += " sorting";
|
className += " sorting";
|
||||||
sortIcon = " <i class='fa fa-chevron-" + (this.get('ascending') ? 'up' : 'down') + "'></i>";
|
sortIcon = " <i class='fa fa-chevron-" + (this.get('ascending') ? 'up' : 'down') + "'></i>";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue