Skip to content

Commit 0a93dce

Browse files
ui: load project list with minimum details (#9711)
This calls listProjects with details=min in the global header menu. Signed-off-by: Rohit Yadav <[email protected]>
1 parent 9ce7ef4 commit 0a93dce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/header/ProjectMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default {
8181
const projects = []
8282
const getNextPage = () => {
8383
this.loading = true
84-
api('listProjects', { listAll: true, page: page, pageSize: 500, showIcon: true }).then(json => {
84+
api('listProjects', { listAll: true, page: page, pageSize: 500, details: 'min', showIcon: true }).then(json => {
8585
if (json?.listprojectsresponse?.project) {
8686
projects.push(...json.listprojectsresponse.project)
8787
}

0 commit comments

Comments
 (0)