Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ export function FieldsDataGrid({ table, isLoading, isError, error, open }: Field
table={table}
tableLayout={{ width: "auto", headerSticky: true }}
>
<DataGridContainer border={true} className="h-full">
<DataGridContainer border={true}>
<div
className="overflow-auto"
ref={tableContainerRef}
style={{
contain: "strict",
height: "100%",
height: "calc(90vh - 280px)", // Adjust based on dialog header and search input height
}}
>
<table className="w-full border-separate border-spacing-0">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function TableOptionsForm({
const isDisabled = currentTableIndex < 0 || configType !== "fmodata" || !open;

return (
<div className="shrink-0 border-border border-t pt-4">
<div className="shrink-0 pt-3">
<div className="flex gap-4">
<FormField
control={control}
Expand Down
Loading