moving dispay determinants to store

This commit is contained in:
Peter Olu 2022-05-06 04:39:27 +01:00
parent 4b3449b287
commit 2edbebdda3

View File

@ -71,8 +71,11 @@ export const traceStore = defineStore({
setTraceCondition(data: any) {
this.condition = { ...this.condition, ...data };
},
setDisplayMode(data:string){
this.displayMode = data
setDisplayMode(data: string) {
this.displayMode = data;
},
setCurrentView(data: string) {
this.currentView = data;
},
setCurrentTrace(trace: Trace) {
this.currentTrace = trace;