Ah beans, fix a homepage crash from the modeling logic changes
Tbh I'm not sure how much this select clause is helping us, but w/e.
This commit is contained in:
parent
ed5b62e161
commit
e82c606ee8
1 changed files with 2 additions and 2 deletions
|
@ -51,8 +51,8 @@ class OutfitsController < ApplicationController
|
||||||
@species = Species.alphabetical
|
@species = Species.alphabetical
|
||||||
|
|
||||||
newest_items = Item.newest.
|
newest_items = Item.newest.
|
||||||
select(:id, :name, :updated_at, :thumbnail_url, :rarity_index,
|
select(:id, :name, :created_at, :updated_at, :thumbnail_url,
|
||||||
:is_manually_nc, :cached_compatible_body_ids,
|
:rarity_index, :is_manually_nc, :cached_compatible_body_ids,
|
||||||
:cached_predicted_fully_modeled)
|
:cached_predicted_fully_modeled)
|
||||||
.limit(18)
|
.limit(18)
|
||||||
@newest_modeled_items, @newest_unmodeled_items =
|
@newest_modeled_items, @newest_unmodeled_items =
|
||||||
|
|
Loading…
Reference in a new issue