Skip to content

Commit

Permalink
Sort class instances by name in right cell
Browse files Browse the repository at this point in the history
  • Loading branch information
hayesr committed Aug 8, 2016
1 parent ac70851 commit c032469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/miq_ae_class/_class_instances.html.haml
Expand Up @@ -10,7 +10,7 @@
%th
%th
%tbody{'data-click-url' => '/miq_ae_class/tree_select/'}
- @record.ae_instances.each do |record|
- @record.ae_instances.order(:name).each do |record|
- next if record.name == '$'
- cls_cid = "#{class_prefix(record.class)}-#{ApplicationRecord.compress_id(record.id)}"
%tr{'data-click-id' => cls_cid}
Expand Down

0 comments on commit c032469

Please sign in to comment.