Browse Source

表格去除emptyText

zhuth 6 years ago
parent
commit
9f77168937
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kanban-client/app/component/Table.jsx

+ 1 - 1
kanban-client/app/component/Table.jsx

@@ -315,7 +315,7 @@ class TableModel extends React.Component {
 					showHeader={this.newProps.showHeader || true}
 					title={this.getTitle()}
 					footer={this.newProps.footer}
-					emptyText={this.newProps.emptyText || 'No Data'}
+					emptyText={this.newProps.emptyText || ''}
 					columns={this.columns || []}
 					data={this.state.data || []}
 					getBodyWrapper={this.getBodyWrapper}