Fix cached get_value call

This commit is contained in:
Frédéric Péters 2018-11-25 14:04:07 +01:00
parent de252eabd5
commit 8516ab9e5c
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class Table(z3c.table.table.Table):
type_column = [x for x in row if isinstance(x[1], TaskTypeColumn)]
if type_column:
type_column = type_column[0]
type_value = get_value(type_column[0], 'portal_type')
type_value = get_value(self.request, type_column[0], 'portal_type')
if type_value:
cssClass += ' row-type-%s' % type_value