Skip to content

Commit

Permalink
Specify selectionMode to fix #220
Browse files Browse the repository at this point in the history
  • Loading branch information
nekoya committed Jan 12, 2017
1 parent 71c89e4 commit f4e38a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/operator/view/DashBoardView.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import {DetailsList} from 'office-ui-fabric-react';
import {DetailsList, SelectionMode} from 'office-ui-fabric-react';

import {Option} from 'option-t';
import {AccountingReport} from '../accounting/AccountingContract';
Expand All @@ -18,7 +18,7 @@ export function DashBoardView(props: DashBoardViewProps): JSX.Element {
}
return (
<div>
<DetailsList items={props.report.unwrap()} />
<DetailsList items={props.report.unwrap()} selectionMode={SelectionMode.none} />
</div>
);
}
Expand Down

0 comments on commit f4e38a9

Please sign in to comment.