This is an automated email from the ASF dual-hosted git repository. critas pushed a commit to branch wx_0516 in repository https://gitbox.apache.org/repos/asf/iotdb-docs.git
commit d28aa14508e4c06d58396a4ef375ee62a5f0039d Author: CritasWang <[email protected]> AuthorDate: Fri May 16 12:20:18 2025 +0800 fix: hide Model Tip for lower version --- src/.vuepress/components/Sidebar.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/.vuepress/components/Sidebar.vue b/src/.vuepress/components/Sidebar.vue index a762764e..e105f1fe 100644 --- a/src/.vuepress/components/Sidebar.vue +++ b/src/.vuepress/components/Sidebar.vue @@ -3,10 +3,10 @@ <template #top> <p class="vp-sidebar-header iotdb-sidebar-header"> <span class="vp-sidebar-title">{{ (sidebarItems && sidebarItems.length > 0) ? sidebarItems[0]?.text : '' - }}</span> + }}</span> </p> - <div class="sidebar-top-wrapper"> - <ul class="switch-list" v-if="currentDialect"> + <div class="sidebar-top-wrapper" v-if="currentDialect"> + <ul class="switch-list"> <li :class="['switch-type', { 'switch-active': currentDialect === 'Tree' }]" @click="handleChangeDialect('Tree')">{{ ModelName.Tree }} </li>
