Skip to content

Commit

Permalink
Include user specified classname in columnHeaderCell (palantir#844)
Browse files Browse the repository at this point in the history
[Table] Include user specified classname in columnHeaderCell
  • Loading branch information
k-simons authored and giladgray committed Mar 20, 2017
1 parent 9af4c42 commit 2f6b0f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/table/src/headers/rowHeaderCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ export class RowHeaderCell extends React.Component<IRowHeaderCellProps, IRowHead

public render() {
const { className, isActive, isRowSelected, loading, name, resizeHandle, style } = this.props;
const rowHeaderClasses = classNames(className, Classes.TABLE_HEADER, {
const rowHeaderClasses = classNames(Classes.TABLE_HEADER, {
[CoreClasses.LOADING]: loading,
[Classes.TABLE_HEADER_ACTIVE]: isActive || this.state.isActive,
[Classes.TABLE_HEADER_SELECTED]: isRowSelected,
});
}, className);

const loadableContentDivClasses = classNames(Classes.TABLE_ROW_NAME_TEXT, Classes.TABLE_TRUNCATED_TEXT);

Expand Down

0 comments on commit 2f6b0f4

Please sign in to comment.