Browse Source

fix (1.44.1 -> 1.44.2): ** 修复bug 188 - HistoryList页面缩略图区域样式问题** , 修复后不遮挡和溢出

改动文件:
- src/pages/patient/HistoryList.tsx
dengdx 1 week ago
parent
commit
ea1586497c
3 changed files with 11 additions and 2 deletions
  1. 9 0
      CHANGELOG.md
  2. 1 1
      package.json
  3. 1 1
      src/pages/patient/HistoryList.tsx

+ 9 - 0
CHANGELOG.md

@@ -2,6 +2,15 @@
 
 本项目的所有重要变更都将记录在此文件中。
 
+## [1.44.2] - 2026-01-03 17:40
+
+### 修复 (Fixed)
+
+- **修复bug 188 - HistoryList页面缩略图区域样式问题** - 修复缩略图区域的样式配置,确保正确显示和滚动
+
+**改动文件:**
+- src/pages/patient/HistoryList.tsx
+
 ## [1.44.1] - 2026-01-03 17:32
 
 ### 修复 (Fixed)

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "zsis",
-  "version": "1.44.1",
+  "version": "1.44.2",
   "private": true,
   "description": "医学成像系统",
   "main": "main.js",

+ 1 - 1
src/pages/patient/HistoryList.tsx

@@ -206,7 +206,7 @@ const HistorylistPage: React.FC = () => {
                 className="border-t"
               />
             </div>
-            <div className="h-60 border-t border-gray-200">
+            <div className=" overflow-auto">
               <ThumbnailList />
             </div>
           </Col>