mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
stub software, language, and tag columns
This commit is contained in:
parent
e205a958c3
commit
85a1ea09a0
1 changed files with 12 additions and 0 deletions
|
|
@ -70,6 +70,18 @@ export class AllListsTable extends React.Component<{}, State> {
|
|||
title="Description"
|
||||
dataIndex={nameof<List>("description")}
|
||||
render={(text: string) => <div>{text}</div>} />
|
||||
<Table.Column<List>
|
||||
title="Software"
|
||||
dataIndex={nameof<List>("syntaxId")}
|
||||
render={(text: string) => <div>{text}</div>} />
|
||||
<Table.Column<List>
|
||||
title="Languages"
|
||||
dataIndex={nameof<List>("languageIds")}
|
||||
render={(text: string) => <div>{text}</div>} />
|
||||
<Table.Column<List>
|
||||
title="Tags"
|
||||
dataIndex={nameof<List>("tagIds")}
|
||||
render={(text: string) => <div>{text}</div>} />
|
||||
<Table.Column<List> title="Subscribe"
|
||||
dataIndex={nameof<List>("viewUrl")}
|
||||
width={123}
|
||||
|
|
|
|||
Loading…
Reference in a new issue