From 593b2f49d3ac09f7a744f581fb457cb5750dd4d0 Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Fri, 18 Feb 2022 13:58:39 +0100 Subject: [PATCH] UI: fix project menu --- ui/src/components/header/ProjectMenu.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/header/ProjectMenu.vue b/ui/src/components/header/ProjectMenu.vue index 959d8f3bcca4..f2565ab60f2b 100644 --- a/ui/src/components/header/ProjectMenu.vue +++ b/ui/src/components/header/ProjectMenu.vue @@ -79,7 +79,7 @@ export default { const getNextPage = () => { this.loading = true api('listProjects', { listAll: true, details: 'min', page: page, pageSize: 500, showIcon: true }).then(json => { - if (json?.listprojectsresponse?.listprojectsresponse.project) { + if (json?.listprojectsresponse?.project) { projects.push(...json.listprojectsresponse.project) } if (projects.length < json.listprojectsresponse.count) {