If I try to use order_by
on a text field I get: "no field configured with name title".
Works fine on fields of type "string". So I end up using a workaround like:
searchable do
text :title
string :title_sortable do
title
end
end
Is there any reason why we cannot order_by
on text fields?