Fix BaseInfiniteFirstCases getter using wrong case for state property

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 07:10:26 +08:00
parent 702d508d37
commit 3f1f8fb680
2 changed files with 13 additions and 1 deletions

View File

@@ -96,7 +96,7 @@ export const useAllMapDataStore = defineStore('allMapDataStore', {
if(state.infiniteStart === 0) return state.allCase;
},
BaseInfiniteFirstCases: state => {
if(state.BaseInfiniteStart === 0) return state.allBaseCase;
if(state.baseInfiniteStart === 0) return state.allBaseCase;
},
traceTaskSeq: state => {
return state.allTraceTaskSeq;