Skip to content

Commit 1412e39

Browse files
committed
chore: fix rebase conflicts
1 parent 6763a80 commit 1412e39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/client/components/Navbar.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const HEADER_OPTIONS = [
113113
];
114114
115115
const isDarkMode = computed(() => darkMode.value === Theme.DARK);
116-
const isStickyNavBar = computed(() => ["index", "User-Setting"].includes(route.name as string));
116+
const isStickyNavBar = computed(() => ["index", "setting"].includes(route.name as string));
117117
const isScrolled = computed(() => y.value >= SCROLL_THRESHOLD);
118118
119119
function handleLogout() {

apps/client/components/main/Tool.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<!-- 右侧 -->
2828
<div class="flex items-center gap-4">
2929
<div
30-
class="tooltip-item mr-4"
30+
class="tooltip-item"
3131
data-tip="重置当前课程进度"
3232
@click="handleDoAgain"
3333
>

0 commit comments

Comments
 (0)