diff options
author | Go MAEDA <maeda@farend.jp> | 2025-04-20 03:33:53 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2025-04-20 03:33:53 +0000 |
commit | abbaaf73facaaf8985def43e3de5d8d199e35c1c (patch) | |
tree | a1bc77fdef7ec7be253b6458f3cd3de78ec0576a | |
parent | 18909613f0a4740fb0671bbc71bc403f115768a5 (diff) | |
download | redmine-abbaaf73facaaf8985def43e3de5d8d199e35c1c.tar.gz redmine-abbaaf73facaaf8985def43e3de5d8d199e35c1c.zip |
Add missing _filters.html.erb view file that was not included in r23686 (#42335).
git-svn-id: https://svn.redmine.org/redmine/trunk@23688 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/custom_fields/formats/_progressbar.html.erb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/views/custom_fields/formats/_progressbar.html.erb b/app/views/custom_fields/formats/_progressbar.html.erb new file mode 100644 index 000000000..ceae14ac8 --- /dev/null +++ b/app/views/custom_fields/formats/_progressbar.html.erb @@ -0,0 +1,6 @@ +<p> + <%= f.select :ratio_interval, + [5, 10].collect {|i| ["#{i} %", i]}, + selected: f.object.new_record? ? Redmine::FieldFormat::ProgressbarFormat.default_ratio_interval : f.object.ratio_interval, + required: true %> +</p> |