mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
line break tidy
This commit is contained in:
parent
a44aa3a179
commit
4157bc89c6
1 changed files with 3 additions and 3 deletions
|
|
@ -69,7 +69,8 @@ export class AllListsTable extends React.Component<{}, State> {
|
|||
<Table.Column<List>
|
||||
title="Description"
|
||||
dataIndex={nameof<List>("description")}
|
||||
render={(text: string, record: List) => <Description desriptionSourceUrl={record.descriptionSourceUrl} desription={text} />} />
|
||||
render={(text: string, record: List) =>
|
||||
<Description desriptionSourceUrl={record.descriptionSourceUrl} desription={text} />} />
|
||||
<Table.Column<List>
|
||||
title="Software"
|
||||
dataIndex={nameof<List>("syntaxId")}
|
||||
|
|
@ -87,8 +88,7 @@ export class AllListsTable extends React.Component<{}, State> {
|
|||
width={123}
|
||||
fixed={this.state.isNarrowWindow ? undefined : "right"}
|
||||
render={(text: string, record: List, index: number) =>
|
||||
<SubscribeButton key={index} viewUrl={text} viewUrlMirrors={record.viewUrlMirrors} name={record.name} />}
|
||||
/>
|
||||
<SubscribeButton key={index} viewUrl={text} viewUrlMirrors={record.viewUrlMirrors} name={record.name} />} />
|
||||
</Table>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue