We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 283b19b commit 25d251cCopy full SHA for 25d251c
web_src/js/components/RepoActionView.vue
@@ -225,7 +225,8 @@ const sfc = {
225
this.fetchArtifacts(), // refresh artifacts if upload-artifact step done
226
]);
227
} catch (err) {
228
- if (!(err instanceof TypeError)) throw err; // avoid network error while unloading page
+ if (err instanceof TypeError) return; // avoid network error while unloading page
229
+ throw err;
230
}
231
232
this.artifacts = artifacts['artifacts'] || [];
0 commit comments