Project

General

Profile

Redmine 2.3.1 Issue list edit

Added by Peter Drábik almost 11 years ago

Hello,
my English is bad.
I have a problem with Issue list. I have two columns with Sort by # and Parent Task colum with parent task ID and parent task name - I want only parent ID, because the table width is then for me too wide and I have to scroll horizontally.

How can I fix this?


Replies (1)

RE: Redmine 2.3.1 Issue list edit - Added by Peter Drábik almost 11 years ago

I fix problem with two Sort by # columns in /app/models/issue_query.rb

I edited line:
QueryColumn.new(:id, :sortable => "#{Issue.table_name}.id", :default_order => 'desc', :caption => '#', :frozen => true),

to:
QueryColumn.new(:id, :sortable => "#{Issue.table_name}.id", :default_order => 'desc'),

    (1-1/1)