Skip to content

Commit

Permalink
update gui
Browse files Browse the repository at this point in the history
  • Loading branch information
lindongchen committed Jul 25, 2024
1 parent 8a613b7 commit 12cc14c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
17 changes: 2 additions & 15 deletions gui/src/layout/AppRoot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -214,26 +214,13 @@ const actions = ref([
command: ()=>{
openWebview({
url:'/#/mesh',
name:'Console',
name:'ZTMGui',
width:1280,
height:860,
proxy:''
})
}
},
{
label: 'Find Apps',
icon: 'pi pi-search',
command: ()=>{
openWebview({
url:'/#/store/apps',
name:'Console',
width:1280,
height:860,
proxy:''
})
}
},
}
]
}
]);
Expand Down
2 changes: 1 addition & 1 deletion gui/src/views/apps/Apps.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const openAppUI = (app, base) => {
}else if(!mappingApp?.component && !app?.component){
const webviewOptions = {
url: mappingApp?.url || app?.url || `${base}/`,
name: `${mappingApp?.name || app.name}App`,
name: `${mappingApp?.name || app.name}`,
width:mappingApp?.width || app?.width || 1280,
height:mappingApp?.height || app?.height || 860,
proxy:''
Expand Down

0 comments on commit 12cc14c

Please sign in to comment.