Conformance Filter: done.

This commit is contained in:
chiayin
2023-10-19 11:01:21 +08:00
parent 1fd019d276
commit b32e1b3b61
4 changed files with 29 additions and 21 deletions

View File

@@ -154,7 +154,7 @@ export default defineStore('allMapDataStore', {
});
return this.allCase;
} catch(error) {
if(error.response.status === 404) this.infinite404 = 404;
if(error.response.status === 404) return this.infinite404 = 404;
apiError(error, 'Failed to load the Trace Detail.');
};
},