active_scaffold 3.6.4 → 3.6.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 335d7ad205e19c251d006398597bad619cc5499efa8a0815017cf27aa5df0b65
|
4
|
+
data.tar.gz: 940135dfbc68e1c3d70aa02132a3d9f3873162dc4964b6d9cdc04a2b73feed97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 436fed807f06fb66d908dd913a54f06173fb7304ebbb59ea15c0952165570c6fd16ba243794dc147140445beb9e03e9f6e28ca9564d5bedb402f28e2dbdd565e
|
7
|
+
data.tar.gz: 7dec63250eee9943823e9ffc14fd45ac7dd2edb5aef15f901a564ba0bc60101b93a41cfca09e58dd29936ef7aebe3e534adb9cfb850abdeb21bb88b7567b028d
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
= 3.6.4.1
|
2
|
+
- Actually fix country_select bridge for latest gem version
|
3
|
+
|
1
4
|
= 3.6.4
|
2
5
|
- Fix country_select bridge for latest gem version
|
3
6
|
|
@@ -45,7 +48,7 @@
|
|
45
48
|
- Display loading indicator at bottom on auto pagination
|
46
49
|
- List rendering speed up
|
47
50
|
- Remove font family from CSS, it was preventing from changing it easily in body
|
48
|
-
- Fix search for mongoid models
|
51
|
+
- Fix search for mongoid models with threadsafety enabled
|
49
52
|
- Keep nested params after calling render_field for column in subform
|
50
53
|
- Fix nested for controllers without list action (for example, for nested create on singular assocations)
|
51
54
|
- Fix delayed setup issues with threads
|
@@ -3,7 +3,7 @@ module ActiveScaffold::Bridges
|
|
3
3
|
module FormColumnHelpers
|
4
4
|
def active_scaffold_input_country(column, options)
|
5
5
|
select_options = {:prompt => as_(:_select_), :priority_countries => column.options[:priority] || [:us]}
|
6
|
-
select_options[:format] = column.options[:format]
|
6
|
+
select_options[:format] = column.options[:format] if column.options[:format]
|
7
7
|
select_options.merge!(options)
|
8
8
|
options.reverse_merge!(column.options).except!(:prompt, :priority, :format)
|
9
9
|
active_scaffold_select_name_with_multiple options
|