class Lookbook::ScenarioEntity

def sort_handler(other_entity)

def sort_handler(other_entity)
  if Lookbook.config.preview_sort_scenarios
    label <=> other_entity.label
  else
    [priority, label] <=> [other_entity.priority, other_entity.label]
  end
end