mirror of
https://github.com/ansible/awx.git
synced 2026-03-11 06:29:31 -02:30
Remove Type from ScheduleList Sort
Remove Type from ScheduleList Sort, and make `name` as default sort. See: https://github.com/ansible/awx/issues/7706
This commit is contained in:
@@ -18,7 +18,7 @@ import ScheduleListItem from './ScheduleListItem';
|
|||||||
const QS_CONFIG = getQSConfig('schedule', {
|
const QS_CONFIG = getQSConfig('schedule', {
|
||||||
page: 1,
|
page: 1,
|
||||||
page_size: 20,
|
page_size: 20,
|
||||||
order_by: 'unified_job_template__polymorphic_ctype__model',
|
order_by: 'name',
|
||||||
});
|
});
|
||||||
|
|
||||||
function ScheduleList({
|
function ScheduleList({
|
||||||
@@ -162,10 +162,6 @@ function ScheduleList({
|
|||||||
name: i18n._(t`Next Run`),
|
name: i18n._(t`Next Run`),
|
||||||
key: 'next_run',
|
key: 'next_run',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: i18n._(t`Type`),
|
|
||||||
key: 'unified_job_template__polymorphic_ctype__model',
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
toolbarSearchableKeys={searchableKeys}
|
toolbarSearchableKeys={searchableKeys}
|
||||||
toolbarRelatedSearchableKeys={relatedSearchableKeys}
|
toolbarRelatedSearchableKeys={relatedSearchableKeys}
|
||||||
|
|||||||
Reference in New Issue
Block a user