@@ -79,7 +79,7 @@ export const DagDataView: React.FC<IProps> = ({ data, info, changePage }) => {
<Table
columns={columns}
dataSource={tableData}
- scroll={{ y: 250 }}
+ scroll={{ x: 3500, y: 250 }}
pagination={{
total: data.total,
onChange: pageChange
@@ -969,7 +969,7 @@ export default class Dag extends React.Component<any, any> {
columns={this.state.nodeTableCol}
dataSource={this.state.nodeTableData}
pagination={{ pageSize: 20 }}
- scroll={{ y: 450 }}
+ scroll={{ x: 3500, y: 450 }}
/>
</Modal>
<Modal
@@ -96,7 +96,7 @@ export default class ToolBar extends React.Component<any, any> {
columns={this.state.columns}
dataSource={this.state.tableData}
pagination={{ pageSize: 50 }}
</div>
);
@@ -397,7 +397,7 @@ export default class ScriptNodeInfo extends React.Component<any, any> {
bordered
- scroll={{ x: 1500, y: 400 }}
+ scroll={{ x: 3500, y: 400 }}
pagination={{ showSizeChanger: false }}
@@ -87,7 +87,3 @@
border-radius: 100%;
background: #fff;
}
-
-::-webkit-scrollbar {
- display: none; /* Chrome Safari */
-}
@@ -1,6 +1,6 @@
.modal-container {
width: 100%;
- height: 600px;
+ height: 664px;
display: flex;
@@ -15,7 +15,7 @@
.modal-table {
flex: 1;
- overflow-y: auto;
+ overflow: auto;
.modal-script {