Actions
Defect #8615
closedCustom 'version' fields don't show shared versions
Start date:
2011-06-15
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
subj.
for fix i change in file app\models\custom_fields.rb
:
def possible_values_options(obj=nil) case field_format when 'user', 'version' if obj.respond_to?(:project) && obj.project case field_format when 'user' obj.project.users.sort.collect {|u| [u.to_s, u.id.to_s]} when 'version' # CHANGES HERE (versions -> shared versions) obj.project.shared_versions.sort.collect {|u| [u.to_s, u.id.to_s]} end elsif obj.is_a?(Array) obj.collect {|o| possible_values_options(o)}.inject {|memo, v| memo & v} else [] end else read_attribute :possible_values end end
Related issues
Updated by Gilles Cornu over 13 years ago
+1
I also applied this patch, which is quite 'natural' when you use version sharing option. It could be nice to let configure the custom field type 'version' between two modes :- project versions only
OR - shared versions
Updated by Vili Kosednar about 13 years ago
Hi,
how to make it show only not closed shared versions in the custom field?
brv
Updated by Jean-Philippe Lang almost 13 years ago
- Tracker changed from Patch to Defect
- Subject changed from Custom 'version' field don't show shared versions to Custom 'version' fields don't show shared versions
- Status changed from New to Closed
- Target version set to 1.2.2
- Affected version (unused) set to 1.2.1
- Resolution set to Fixed
- Affected version set to 1.2.1
Fixed in r7772 with tests and merged in 1.2-stable.
Thanks.
Actions