Skip to content

Commit d7b2acc

Browse files
committed
fix: Application import
1 parent 0434a18 commit d7b2acc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ui/src/views/application/index.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,9 +600,12 @@ const importApplication = (file: any) => {
600600
.then(async (res: any) => {
601601
if (res?.data) {
602602
applicationList.value = []
603-
getList()
603+
user.profile()
604604
}
605605
})
606+
.then(() => {
607+
getList()
608+
})
606609
.catch((e) => {
607610
if (e.code === 400) {
608611
MsgConfirm(t('common.tip'), t('views.application.tip.professionalMessage'), {

0 commit comments

Comments
 (0)