FIX: The position of existing elements in the array CORE_FIELDS must not be changed (#38416).

git-svn-id: https://svn.redmine.org/redmine/trunk@22186 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2023-04-14 07:48:21 +00:00
parent 55408c480b
commit f7ea8d2240

View File

@@ -24,8 +24,8 @@ class Tracker < ActiveRecord::Base
# Fields that can be disabled
# Other (future) fields should be appended, not inserted!
CORE_FIELDS =
%w(priority_id assigned_to_id category_id fixed_version_id parent_issue_id
start_date due_date estimated_hours done_ratio description).freeze
%w(assigned_to_id category_id fixed_version_id parent_issue_id
start_date due_date estimated_hours done_ratio description priority_id).freeze
CORE_FIELDS_ALL = (CORE_FIELDS_UNDISABLABLE + CORE_FIELDS).freeze
before_destroy :check_integrity