Skip to content

Commit

Permalink
fix(style): overflow issue in dataset data types display
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Aug 21, 2023
1 parent 9a65378 commit 0bdf545
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/components/datasets/DatasetDataTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const DatasetDataTypes = React.memo(
onClick={() => handleClearDataType(dt)}
style={{ width: "100%" }}
>
Clear Data
Clear
</Button>
</Col>
</Row>
Expand All @@ -98,24 +98,24 @@ const DatasetDataTypes = React.memo(

return (
<>
<DataTypeSummaryModal
dataType={selectedDataType}
summary={selectedSummary}
visible={datatypeSummaryVisible}
onCancel={onDataTypeSummaryModalCancel}
/>
<DataTypeSummaryModal
dataType={selectedDataType}
summary={selectedSummary}
visible={datatypeSummaryVisible}
onCancel={onDataTypeSummaryModalCancel}
/>

<Typography.Title level={4}>
Data Types
</Typography.Title>
<Typography.Title level={4}>
Data Types
</Typography.Title>

<Table
bordered
dataSource={datasetDataTypes}
rowKey="id"
columns={dataTypesColumns}
loading={isFetchingDatasets}
/>
<Table
bordered
dataSource={datasetDataTypes}
rowKey="id"
columns={dataTypesColumns}
loading={isFetchingDatasets}
/>
</>
);
});
Expand Down

0 comments on commit 0bdf545

Please sign in to comment.