This is an automated email from the ASF dual-hosted git repository.

critas pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-docs.git


The following commit(s) were added to refs/heads/main by this push:
     new 66001f4e fix: hide Model Tip for lower version (#748)
66001f4e is described below

commit 66001f4e6646f1ba05b9b29ece63fa97c890e371
Author: CritasWang <[email protected]>
AuthorDate: Fri May 16 12:24:29 2025 +0800

    fix: hide Model Tip for lower version (#748)
---
 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>

Reply via email to