diff --git a/web/src/global.less b/web/src/global.less
index c95fdb0bdd9..58308ad737f 100644
--- a/web/src/global.less
+++ b/web/src/global.less
@@ -2,6 +2,7 @@
html {
height: 100%;
+ overflow: hidden; // The content of the DatasetSettings page is too high, which will cause scroll bars to appear on the html tags. Setting the maximum height in DatasetSettings does not work either. I don't understand.
}
body {
diff --git a/web/src/pages/dataset/index.tsx b/web/src/pages/dataset/index.tsx
index d79abb76160..d1f65c7e3b4 100644
--- a/web/src/pages/dataset/index.tsx
+++ b/web/src/pages/dataset/index.tsx
@@ -3,7 +3,7 @@ import { SideBar } from './sidebar';
export default function DatasetWrapper() {
return (
-
+
diff --git a/web/src/pages/dataset/setting/index.tsx b/web/src/pages/dataset/setting/index.tsx
index 15f82ab9300..93278fc6d82 100644
--- a/web/src/pages/dataset/setting/index.tsx
+++ b/web/src/pages/dataset/setting/index.tsx
@@ -1,20 +1,24 @@
-import { Card } from '@/components/ui/card';
+import { Card, CardContent } from '@/components/ui/card';
import AdvancedSettingForm from './advanced-setting-form';
import BasicSettingForm from './basic-setting-form';
export default function DatasetSettings() {
return (
-
-