Guard baseResponse.data access when baseLogId is falsy in getAllTrace

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 08:14:07 +08:00
parent 833427b224
commit c7aa32ef6d
2 changed files with 18 additions and 2 deletions

View File

@@ -165,8 +165,10 @@ export default defineStore('allMapDataStore', {
let baseResponse;
const response = await this.$axios.get(api);
this.allTrace = response.data;
if(baseLogId) baseResponse = await this.$axios.get(baseApi);
this.allBaseTrace = baseResponse.data;
if(baseLogId) {
baseResponse = await this.$axios.get(baseApi);
this.allBaseTrace = baseResponse.data;
}
} catch(error) {
apiError(error, 'Failed to load the Trace.');
}