diff --git a/app/controllers/desktop/co_author_relations_controller.rb b/app/controllers/desktop/co_author_relations_controller.rb
index 787ad36c..cb01915e 100644
--- a/app/controllers/desktop/co_author_relations_controller.rb
+++ b/app/controllers/desktop/co_author_relations_controller.rb
@@ -14,10 +14,11 @@ class Desktop::CoAuthorRelationsController < ApplicationController
def create
@new_relation = CoAuthorRelation.new(params[:co_author_relation])
+ @co_author_relations = CoAuthorRelation.all
if @new_relation.save
- newv = render_to_string :partial=>"show_form", :object=>@new_relation
- render json: {success:true, msg: "New Relation successfully saved!","newvalue"=>newv}.to_json
+ newv = render_to_string partial: "show_form", object: @co_author_relations
+ render json: {success: true, msg: "New Relation successfully saved!", newvalue: newv}.to_json
else
error_msg = @new_relation.errors.full_messages.join("
")
render json: {success: false, msg: error_msg}.to_json
diff --git a/app/views/desktop/co_author_relations/_show_form.html.erb b/app/views/desktop/co_author_relations/_show_form.html.erb
index bdb9f72e..d3c803d3 100644
--- a/app/views/desktop/co_author_relations/_show_form.html.erb
+++ b/app/views/desktop/co_author_relations/_show_form.html.erb
@@ -1,4 +1,6 @@
+ <% @co_author_relations.each do |co_author_relation| %>