Fix CI: cd to frontend before cypress, use subshell for vite
Some checks failed
PR Preview / teardown-preview (pull_request) Has been skipped
Test / unit-test (push) Successful in 5s
Test / build-check (push) Successful in 4s
PR Preview / test (pull_request) Successful in 5s
PR Preview / deploy-preview (pull_request) Successful in 12s
Test / e2e-test (push) Failing after 6m15s

This commit is contained in:
2026-04-06 22:20:47 +00:00
parent c115c47e61
commit f88521c9be
3 changed files with 14 additions and 12 deletions

View File

@@ -2,7 +2,6 @@
<div class="my-diary">
<!-- Sub Tabs -->
<div class="sub-tabs">
<button class="sub-tab" :class="{ active: activeTab === 'diary' }" @click="activeTab = 'diary'">📖 配方日记</button>
<button class="sub-tab" :class="{ active: activeTab === 'brand' }" @click="activeTab = 'brand'">🏷 Brand</button>
<button class="sub-tab" :class="{ active: activeTab === 'account' }" @click="activeTab = 'account'">👤 Account</button>
</div>
@@ -216,7 +215,7 @@ const oils = useOilsStore()
const diaryStore = useDiaryStore()
const ui = useUiStore()
const activeTab = ref('diary')
const activeTab = ref('brand')
const pasteText = ref('')
const selectedDiaryId = ref(null)
const selectedDiary = ref(null)