Followup fix for issue #1752 - tree got lost after update.
This commit is contained in:
parent
968074d8ef
commit
a088321498
2 changed files with 3 additions and 3 deletions
|
@ -127,7 +127,7 @@ class ObjectManagerAttributesController < ApplicationController
|
||||||
permitted[:data_option][:null] = true
|
permitted[:data_option][:null] = true
|
||||||
end
|
end
|
||||||
|
|
||||||
if !permitted[:data_option][:options].is_a?(Hash)
|
if !permitted[:data_option][:options].is_a?(Hash) && !permitted[:data_option][:options].is_a?(Array)
|
||||||
permitted[:data_option][:options] = {}
|
permitted[:data_option][:options] = {}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -21,12 +21,12 @@ class CheckForObjectAttributes < ActiveRecord::Migration[5.1]
|
||||||
end
|
end
|
||||||
|
|
||||||
def fix_nil_data_option(attribute)
|
def fix_nil_data_option(attribute)
|
||||||
return if attribute[:data_option].is_a?(Hash)
|
return if attribute[:data_option].is_a?(Hash) || attribute[:data_option][:options].is_a?(Array)
|
||||||
attribute[:data_option] = {}
|
attribute[:data_option] = {}
|
||||||
end
|
end
|
||||||
|
|
||||||
def fix_options(attribute)
|
def fix_options(attribute)
|
||||||
return if attribute[:data_option][:options].is_a?(Hash)
|
return if attribute[:data_option][:options].is_a?(Hash) || attribute[:data_option][:options].is_a?(Array)
|
||||||
attribute[:data_option][:options] = {}
|
attribute[:data_option][:options] = {}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue