Merge pull request #8492 from nixocio/ui_issue_7706

Remove Type from ScheduleList Sort

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2020-11-02 14:54:20 +00:00 committed by GitHub
commit 1a4f2f43b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ import ScheduleListItem from './ScheduleListItem';
const QS_CONFIG = getQSConfig('schedule', {
page: 1,
page_size: 20,
order_by: 'unified_job_template__polymorphic_ctype__model',
order_by: 'name',
});
function ScheduleList({
@ -162,10 +162,6 @@ function ScheduleList({
name: i18n._(t`Next Run`),
key: 'next_run',
},
{
name: i18n._(t`Type`),
key: 'unified_job_template__polymorphic_ctype__model',
},
]}
toolbarSearchableKeys={searchableKeys}
toolbarRelatedSearchableKeys={relatedSearchableKeys}