Skip to content

Commit

Permalink
fix: Fix problem when click enter app detail in apps page (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
moonrailgun authored Aug 11, 2022
1 parent 684f937 commit 5680d38
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/web/src/pages/apps/components/AppTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,10 @@ const exportApp = async (app) => {
}
const toDetail = (app: any) => {
if (app.status !== 'running')
if (app.status !== 'running') {
ElMessage.error('请先启动应用服务!')
return
}
const { appid } = app
const path = `/app/${appid}/dashboard`
Expand Down

0 comments on commit 5680d38

Please sign in to comment.