fix: move project_id filter at the end of filters

move project_id filter at the end of filters

Change-Id: Ie8cd7d7b7bf9f787ff001c1cccbd690a6ce59b4e
This commit is contained in:
zhuyue 2021-09-29 10:39:06 +08:00
parent e43612a39a
commit e04d861d80

View File

@ -101,10 +101,6 @@ export default class AddNetwork extends ModalAction {
getSearchFilters() {
return [
{
label: t('Project ID'),
name: 'project_id',
},
{
label: t('Name'),
name: 'name',
@ -119,6 +115,10 @@ export default class AddNetwork extends ModalAction {
name: 'router:external',
options: yesNoOptions,
},
{
label: t('Project ID'),
name: 'project_id',
},
];
}