From e04d861d8034a34b754ea5c10f7d5b6310ad073c Mon Sep 17 00:00:00 2001 From: zhuyue Date: Wed, 29 Sep 2021 10:39:06 +0800 Subject: [PATCH] fix: move project_id filter at the end of filters move project_id filter at the end of filters Change-Id: Ie8cd7d7b7bf9f787ff001c1cccbd690a6ce59b4e --- .../NeutronAgent/Detail/Network/actions/Add.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/configuration/containers/SystemInfo/NeutronAgent/Detail/Network/actions/Add.jsx b/src/pages/configuration/containers/SystemInfo/NeutronAgent/Detail/Network/actions/Add.jsx index 9dde53f7..8a57a51f 100644 --- a/src/pages/configuration/containers/SystemInfo/NeutronAgent/Detail/Network/actions/Add.jsx +++ b/src/pages/configuration/containers/SystemInfo/NeutronAgent/Detail/Network/actions/Add.jsx @@ -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', + }, ]; }