@mulmoclaude/accounting-plugin 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server.cjs +3 -2
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +2 -1
- package/dist/server.js.map +1 -1
- package/dist/shared-BZAAF-I4.js.map +1 -1
- package/dist/shared-BpFVwa6Y.cjs.map +1 -1
- package/dist/vue.cjs +2 -1
- package/dist/vue.cjs.map +1 -1
- package/dist/vue.js +2 -1
- package/dist/vue.js.map +1 -1
- package/package.json +5 -5
package/dist/vue.js
CHANGED
|
@@ -4990,7 +4990,8 @@ var View_default = /* @__PURE__ */ defineComponent({
|
|
|
4990
4990
|
return TAB_KEYS.some((key) => key === value);
|
|
4991
4991
|
}
|
|
4992
4992
|
const initialPayload = computed(() => props.selectedResult?.data ?? props.selectedResult?.jsonData ?? {});
|
|
4993
|
-
const
|
|
4993
|
+
const initialTab = computed(() => isTabKey(initialPayload.value.initialTab) ? initialPayload.value.initialTab : "journal");
|
|
4994
|
+
const currentTab = ref(initialTab.value);
|
|
4994
4995
|
const books = ref([]);
|
|
4995
4996
|
const activeBookId = ref(null);
|
|
4996
4997
|
const accounts = ref([]);
|