From 06af9d6fd379ef6855a773cde44d634129935329 Mon Sep 17 00:00:00 2001 From: "Jingwei.Zhang" Date: Tue, 20 Sep 2022 16:45:44 +0800 Subject: [PATCH] fix: fix fetch subnets In adminstrator, remove the request parameter all_projects when fetch the subnets, because the subnet list api in the Y/Z not support this parameter Closes-Bug: #1990241 Change-Id: Ie0e6e6171d69bfa63f49727ffdc0626b6266eb80 --- src/stores/neutron/subnet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/neutron/subnet.js b/src/stores/neutron/subnet.js index 36935ac6..365e3674 100644 --- a/src/stores/neutron/subnet.js +++ b/src/stores/neutron/subnet.js @@ -31,7 +31,7 @@ export class SubnetStore extends Base { get paramsFunc() { return (params) => { - const { network, ...rest } = params; + const { network, all_projects, ...rest } = params; return rest; }; }