We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bff2b4 commit 5b5709cCopy full SHA for 5b5709c
ui/src/views/application/index.vue
@@ -226,9 +226,11 @@ function settingApplication(row: any) {
226
}
227
const exportApplication = (application: any) => {
228
applicationApi.exportApplication(application.id, application.name, loading).catch((e) => {
229
- e.response.data.text().then((res: string) => {
230
- MsgError(`导出失败:${JSON.parse(res).message}`)
231
- })
+ if (e.response.status !== 403) {
+ e.response.data.text().then((res: string) => {
+ MsgError(`导出失败:${JSON.parse(res).message}`)
232
+ })
233
+ }
234
})
235
236
const importApplication = (file: any) => {
0 commit comments