Skip to content

Commit 0322123

Browse files
committed
fix: fix issue with config tables
1 parent 2bc45e3 commit 0322123

File tree

6 files changed

+7
-3
lines changed

6 files changed

+7
-3
lines changed

src/components/Configs/Changes/ConfigChangeTable.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,7 @@ export function ConfigChangeTable({
221221
totalRowCount={totalRecords}
222222
manualPageCount={numberOfPages}
223223
enableServerSidePagination
224+
disableHiding
224225
onRowClick={(row) => {
225226
setSelectedConfigChange(row);
226227
setModalIsOpen(true);

src/components/Configs/ConfigList/ConfigsRelationshipsTable.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export default function ConfigsRelationshipsTable({
4949
totalRowCount={totalEntries}
5050
manualPageCount={pageCount}
5151
enableGrouping
52+
disableHiding
5253
/>
5354
);
5455
}

src/components/Configs/ConfigList/MRTConfigListColumn.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export const mrtConfigListColumns: MRT_ColumnDef<ConfigItem>[] = [
6363
) : (
6464
<>
6565
{groupingValue ? (
66-
<span className="ml-2">{groupingValue} </span>
66+
<span className="ml-2">{groupingValue}</span>
6767
) : (
6868
<span className="ml-2 text-gray-500">(none)</span>
6969
)}

src/components/Configs/ConfigsTypeIcon.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export type ConfigIconProps = {
1313

1414
export default function ConfigsTypeIcon({
1515
config,
16-
className = "w-5 h-5",
16+
className = "w-4 h-4",
1717
showPrimaryIcon = true,
1818
showSecondaryIcon = true,
1919
showLabel = false,
@@ -49,7 +49,7 @@ export default function ConfigsTypeIcon({
4949
}
5050

5151
return (
52-
<div className="flex flex-1 flex-row items-center gap-1 overflow-hidden">
52+
<div className="flex flex-1 flex-row items-center gap-1 overflow-hidden text-sm">
5353
<span className="flex flex-row items-center gap-1">
5454
{showPrimaryIcon && (
5555
<Icon

src/components/Configs/Insights/ConfigInsightsList.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ export default function ConfigInsightsList({
6262
totalRowCount={totalEntries}
6363
manualPageCount={pageCount}
6464
columns={configInsightsColumns}
65+
disableHiding
6566
/>
6667
)}
6768

src/components/Playbooks/Runs/PlaybookRunsList.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ export default function PlaybookRunsTable({
137137
totalRowCount={totalRecords}
138138
enableServerSidePagination
139139
enableServerSideSorting
140+
disableHiding
140141
/>
141142
</div>
142143
);

0 commit comments

Comments
 (0)