Issues #179: done.

This commit is contained in:
chiayin
2023-11-03 17:12:57 +08:00
parent 59f59e6280
commit 672d93b821
5 changed files with 86 additions and 24 deletions

View File

@@ -54,10 +54,10 @@ export default defineStore('allMapDataStore', {
return state.allInsights;
},
traces: state => {
return state.allTrace;
return state.allTrace.sort((x, y) => x.id - y.id);
},
baseTraces: state => {
return state.allBaseTrace;
return state.allBaseTrace.sort((x, y) => x.id - y.id);
},
cases: state => {
return state.allCase;