fix custom ticket list

This commit is contained in:
Guillermo Giuliana 2020-01-31 14:15:07 -03:00
parent c941a4792d
commit 72a9b1ef0e
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class AdminPanelSearchTickets extends React.Component {
return (
<div className="admin-panel-all-tickets">
<Header title={this.getList().title} description={i18n('SEARCH_TICKETS_DESCRIPTION')} />
{(this.props.error) ? <Message type="error">{i18n('ERROR_RETRIEVING_TICKETS')}</Message> : <TicketQueryList customList ={this.getList().filters}/>}
{(this.props.error) ? <Message type="error">{i18n('ERROR_RETRIEVING_TICKETS')}</Message> : <TicketQueryList customList ={this.getList()}/>}
</div>
);
}