Natus Drew
Natus Drew

Reputation: 1896

Rails Active Admin Resource Association Belongs To

In the select dropdown element it shows instead of the string for City:

<option value="1">#<City:0x007f850028b220></option>

Upvotes: 0

Views: 73

Answers (1)

user419017
user419017

Reputation:

Add to your City model:

class City
  def to_s
    name
  end
end

Replacing name with relevant attribute.

Upvotes: 1

Related Questions