Commit 20f39774ba61cf687fc1bd3e5d47cc0dca830e1c

Authored by Andrey Karpikov
1 parent b1020ce9

check error generate repeat element

@@ -252,7 +252,8 @@ module Kanjai @@ -252,7 +252,8 @@ module Kanjai
252 row_index.each_with_index do |row_index, position| 252 row_index.each_with_index do |row_index, position|
253 value = scope.where(row_item: row_index).collect{|item| [item.marker, item.text_value] }.to_h 253 value = scope.where(row_item: row_index).collect{|item| [item.marker, item.text_value] }.to_h
254 value ||= {} 254 value ||= {}
255 - value = value.merge(hash_value) if hash_value 255 + hash_value ||= {}
  256 + value = value.merge(hash_value)
256 if(position == 0) 257 if(position == 0)
257 value['###FIRST_ITEM_ACTIVE###'] = 'active show' 258 value['###FIRST_ITEM_ACTIVE###'] = 'active show'
258 value['###FIRST_ITEM_TRUE###'] = 'true' 259 value['###FIRST_ITEM_TRUE###'] = 'true'
1 module Kanjai 1 module Kanjai
2 - VERSION = "0.0.330" 2 + VERSION = "0.0.331"
3 end 3 end