1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 11:37:14 +00:00

Fix RuboCop offense Style/SuperWithArgsParentheses (#37862).

git-svn-id: https://svn.redmine.org/redmine/trunk@22801 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2024-05-01 09:21:47 +00:00
parent 6fa12a95ab
commit 6f82abf463

View File

@ -22,7 +22,7 @@ class IssueQuery < Query
COLUMN_SQL = Arel.sql("COALESCE(#{Issue.table_name}.estimated_hours, 0) * (100 - COALESCE(#{Issue.table_name}.done_ratio, 0)) / 100")
def initialize
super :estimated_remaining_hours, totalable: true, sortable: COLUMN_SQL
super(:estimated_remaining_hours, totalable: true, sortable: COLUMN_SQL)
end
def value(object)