We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72669d1 commit 1252927Copy full SHA for 1252927
1 file changed
frontend/src/pages/SettingsPage/ModelAccess.tsx
@@ -279,16 +279,18 @@ export default function ModelAccess() {
279
}
280
className="mb-4"
281
/>
282
- <Card>
283
- <Table
284
- rowKey="id"
285
- columns={columns}
286
- dataSource={tableData}
287
- loading={loading}
288
- pagination={pagination}
289
- scroll={{ x: "max-content", y: "calc(100vh - 26rem)" }}
290
- />
291
- </Card>
+ <div className="flex flex-col h-[calc(100vh-12rem)]">
+ <Card className="flex-1 overflow-auto">
+ <Table
+ rowKey="id"
+ columns={columns}
+ dataSource={tableData}
+ loading={loading}
+ pagination={pagination}
+ scroll={false}
+ />
292
+ </Card>
293
+ </div>
294
<Modal
295
open={showModelDialog}
296
onCancel={() => setShowModelDialog(false)}
0 commit comments