This will result in table-plus not showing *any* column selected for sorting on an initial load - an alternative is to just fill the param manually:
params[:sort] ||= "name"
@spacelist = ... # parse_sort_param will never return nil now, and the column corresponding to 'name' will get the little sort arrow in the table-plus header
--Matt Jones