commiting change with default variables

This commit is contained in:
isaiM6
2022-07-28 17:27:35 -07:00
7 changed files with 31 additions and 8 deletions

View File

@@ -96,6 +96,7 @@ const idTicker = ref(0)
const deletionToast = ref<{ goAway: (delay: number) => void } | null>(null)
// The functional variables list (the variables actually applied to the session)
const vars = useStream(restVars$, [], setRESTVars) as Ref<HoppRESTVar[]>
// The UI representation of the variables list (has the empty end variable)
@@ -153,7 +154,6 @@ watch(workingVars, (newWorkingVars) => {
)
)
)
console.log("vars.value1", vars.value)
if (!isEqual(vars.value, fixedVars)) {
vars.value = cloneDeep(fixedVars)
}