mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
parent
c9945d99b0
commit
9c685d4afa
1 changed files with 2 additions and 2 deletions
|
|
@ -115,8 +115,8 @@ export class Home extends React.Component<RouteComponentProps<{}>, IHomeState> {
|
|||
.map((e: any) => e.name.concat(e.iso6391)).join().toUpperCase()
|
||||
.includes(filter.value.toUpperCase()),
|
||||
sortMethod: (a: any, b: any) => a.join().toUpperCase() > b.join().toUpperCase() ? 1 : -1,
|
||||
Cell: (cell: any) =>
|
||||
<div>{cell.value.map((e: any) => e.iso6391).join(", ")}</div>,
|
||||
Cell: (cell: any) => <div className="fl-tag-container">{cell.value.map(
|
||||
(e: any) => <span className="badge badge-secondary" title={e.name}>{e.iso6391}</span>)}</div>,
|
||||
style: { whiteSpace: "inherit" },
|
||||
width: 60,
|
||||
headerClassName: "d-none d-md-block",
|
||||
|
|
|
|||
Loading…
Reference in a new issue