diff options
author | hellekin <hellekin@cepheide.org> | 2020-10-09 11:46:05 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2020-10-09 11:46:49 +0200 |
commit | f193e708285db21e9e3dffbe96c9961a9865e2db (patch) | |
tree | 4eea900f5c4b0d3368a3c64816f9a0bbe36cb6ae /app | |
parent | d7030931a48c270c78181bee02613c1211e0d4fd (diff) | |
download | incommon-map-f193e708285db21e9e3dffbe96c9961a9865e2db.tar.gz |
Avoid errors on missing Taxonomy
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/welcome_controller.rb | 8 | ||||
-rw-r--r-- | app/views/resources/_form.html.erb | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/app/controllers/welcome_controller.rb b/app/controllers/welcome_controller.rb index ee73270..0c41e5a 100644 --- a/app/controllers/welcome_controller.rb +++ b/app/controllers/welcome_controller.rb @@ -62,10 +62,10 @@ class WelcomeController < ApplicationController name: current_agent.name, uuid: current_agent.uuid, counts: { - resources: current_agent.resources.count, - taxonomies: current_agent.taxonomies.count, - categories: current_agent.categories.count, - sectiions: current_agent.sections.count + resources: current_agent.resources&.count, + taxonomies: current_agent.taxonomies&.count, + categories: current_agent.categories&.count, + sectiions: current_agent.sections&.count } }, my_agents: current_user.agents.map { |a| { uuid: a.uuid, name: a.name } } diff --git a/app/views/resources/_form.html.erb b/app/views/resources/_form.html.erb index fe5f532..89745bd 100644 --- a/app/views/resources/_form.html.erb +++ b/app/views/resources/_form.html.erb @@ -29,7 +29,7 @@ La description _peut_ comporter du [Markdown]. <fieldset> <%= tag.legend "Classification" %> <%# TODO Add a taxonomy selector %> - <%= section_select(current_agent.taxonomies.first) %> + <%= section_select(current_agent.taxonomies&.first || Taxonomy.first) %> </fieldset> <fieldset> |