Skip to content

Commit

Permalink
fix: ServiceDetail page table column fixed width
Browse files Browse the repository at this point in the history
  • Loading branch information
loadchange committed Oct 24, 2018
1 parent c63f589 commit 0ab5bf9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ class InstanceTable extends React.Component {
return instance.count ? (
<div>
<Table dataSource={instance.list} loading={loading} getRowProps={this.rowColor}>
<Table.Column title="IP" dataIndex="ip"/>
<Table.Column title={I18N.PORT} dataIndex="port"/>
<Table.Column title={I18N.WEIGHT} dataIndex="weight"/>
<Table.Column title={I18N.HEALTHY} dataIndex="healthy" cell={val => `${val}`}/>
<Table.Column width={138} title="IP" dataIndex="ip"/>
<Table.Column width={100} title={I18N.PORT} dataIndex="port"/>
<Table.Column width={100} title={I18N.WEIGHT} dataIndex="weight"/>
<Table.Column width={100} title={I18N.HEALTHY} dataIndex="healthy" cell={val => `${val}`}/>
<Table.Column
title={I18N.METADATA}
dataIndex="metadata"
Expand Down

0 comments on commit 0ab5bf9

Please sign in to comment.