Oops, fix item search crash in wardrobe

Oh right, these aren't the weird item proxy thing anymore, stop calling these methods!
This commit is contained in:
Matchu 2023-07-28 15:16:06 -07:00
parent 4b891b1a91
commit 24511e5cfe

View file

@ -26,12 +26,10 @@ class ItemsController < ApplicationController
end
}
format.json {
@items.prepare_method(:as_json)
render json: {items: @items, total_pages: @items.total_pages,
query: @query.to_s}
}
format.js {
@items.prepare_method(:as_json)
render json: {items: @items, total_pages: @items.total_pages,
query: @query.to_s},
callback: params[:callback]